diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-08-30 15:43:41 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-08-30 15:43:41 +0000 |
commit | a71978e907b6fce3a836aedd119dd11cb869180a (patch) | |
tree | 54c19fe8c247000f4ed7804ef00a55fa15bf13db /usr.bin/tmux/tmux.c | |
parent | e1267615524f115589fefe643178bcbf88595567 (diff) |
Some style nits and dead assignments.
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r-- | usr.bin/tmux/tmux.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index 320abcb10aa..cf3b7da6bd3 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.137 2015/07/20 15:50:04 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.138 2015/08/30 15:43:40 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -198,7 +198,7 @@ shell_exec(const char *shell, const char *shellcmd) fatal("execl failed"); } -const char* +const char * find_home(void) { struct passwd *pw; @@ -213,7 +213,7 @@ find_home(void) home = NULL; } - return home; + return (home); } int |