Some style nits and dead assignments.

This commit is contained in:
nicm
2015-08-30 15:43:40 +00:00
parent 5047670693
commit b87dc608d9
5 changed files with 5 additions and 12 deletions

4
tmux.c
View File

@ -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