diff options
author | Thomas Adam <thomas@xteddy.org> | 2014-02-16 23:02:07 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2014-02-16 23:02:07 +0000 |
commit | b3de4a3dec85bc84bb83da6b46e2a8e2a634ace3 (patch) | |
tree | 8704cc16b1ed5380bcd7c678351d85adfd5907c8 /cmd-set-option.c | |
parent | 8edbbb98656a76f0a25b5243b526709a67ae3531 (diff) | |
parent | 81db6bab91309e7cb42628048408c10504522a48 (diff) | |
download | rtmux-b3de4a3dec85bc84bb83da6b46e2a8e2a634ace3.tar.gz rtmux-b3de4a3dec85bc84bb83da6b46e2a8e2a634ace3.tar.bz2 rtmux-b3de4a3dec85bc84bb83da6b46e2a8e2a634ace3.zip |
Merge branch 'obsd-master'
Conflicts:
tmux.1
tmux.c
Diffstat (limited to 'cmd-set-option.c')
-rw-r--r-- | cmd-set-option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-set-option.c b/cmd-set-option.c index b760b045..15b14f08 100644 --- a/cmd-set-option.c +++ b/cmd-set-option.c @@ -172,7 +172,7 @@ cmd_set_option_exec(struct cmd *self, struct cmd_q *cmdq) } /* Start or stop timers when automatic-rename changed. */ - if (strcmp (oe->name, "automatic-rename") == 0) { + if (strcmp(oe->name, "automatic-rename") == 0) { for (i = 0; i < ARRAY_LENGTH(&windows); i++) { if ((w = ARRAY_ITEM(&windows, i)) == NULL) continue; |