diff options
author | nicm <nicm> | 2017-02-16 10:53:25 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-02-16 10:53:25 +0000 |
commit | 8b8d0963da522c3a0ac4e99dc9264b6fda2b477a (patch) | |
tree | 43fa691802d7922ec30c8f79b719a20cf3aea657 /tmux.c | |
parent | dd25a6cdc21c76888c370a053ca2adb710a89cdf (diff) | |
download | rtmux-8b8d0963da522c3a0ac4e99dc9264b6fda2b477a.tar.gz rtmux-8b8d0963da522c3a0ac4e99dc9264b6fda2b477a.tar.bz2 rtmux-8b8d0963da522c3a0ac4e99dc9264b6fda2b477a.zip |
Style nits.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ getshell(void) static int checkshell(const char *shell) { - if (shell == NULL || *shell == '\0' || *shell != '/') + if (shell == NULL || *shell != '/') return (0); if (areshell(shell)) return (0); |