aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authornicm <nicm>2015-08-30 15:43:40 +0000
committernicm <nicm>2015-08-30 15:43:40 +0000
commitb87dc608d9b5b470926aaf77c5956befdfb7bc7b (patch)
treea724506b817ef6ac35a28770bcc6731234547113 /tmux.c
parent5047670693e3bc861eb4ae95708c96041b12a759 (diff)
downloadrtmux-b87dc608d9b5b470926aaf77c5956befdfb7bc7b.tar.gz
rtmux-b87dc608d9b5b470926aaf77c5956befdfb7bc7b.tar.bz2
rtmux-b87dc608d9b5b470926aaf77c5956befdfb7bc7b.zip
Some style nits and dead assignments.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index a3481461..e66d24c0 100644
--- a/tmux.c
+++ b/tmux.c
@@ -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