diff options
author | 2016-12-09 21:39:27 +0000 | |
---|---|---|
committer | 2016-12-09 21:39:27 +0000 | |
commit | 2bb2dba4efae314e63424c7f5ff1c8ee57c4c995 (patch) | |
tree | 915867ac8be6dac78c3815233fab41b1b6b1f640 /usr.bin/tmux/tmux.c | |
parent | Update the media as the last step in the SFP module configuration (diff) | |
download | wireguard-openbsd-2bb2dba4efae314e63424c7f5ff1c8ee57c4c995.tar.xz wireguard-openbsd-2bb2dba4efae314e63424c7f5ff1c8ee57c4c995.zip |
Spacing nits.
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r-- | usr.bin/tmux/tmux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index 53dee059c31..eb0091045ed 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.172 2016/10/11 13:21:59 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.173 2016/12/09 21:39:27 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -321,7 +321,7 @@ main(int argc, char **argv) s = getenv("TMUX"); if (s != NULL && *s != '\0' && *s != ',') { path = xstrdup(s); - path[strcspn (path, ",")] = '\0'; + path[strcspn(path, ",")] = '\0'; } } if (path == NULL && (path = make_label(label)) == NULL) { |