summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authornicm <nicm>2016-12-09 21:39:27 +0000
committernicm <nicm>2016-12-09 21:39:27 +0000
commitbee95bf378ab45d4671fd086a4dd24b7259cf772 (patch)
tree506427d0c4c6a5645671c529b03520c3b46c6f32 /tmux.c
parent2a7b4bb01710eab0b7819f3b80edaea636ada66f (diff)
Spacing nits.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index dbd91e2b..194a16e5 100644
--- a/tmux.c
+++ b/tmux.c
@@ -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) {