diff options
author | 2014-02-14 13:59:01 +0000 | |
---|---|---|
committer | 2014-02-14 13:59:01 +0000 | |
commit | f37158306a4e3dbfee79c64f03c414f0f3c4bf11 (patch) | |
tree | 8484a1ff9906ebe865207477f9c41ac46701fc4c /usr.bin/tmux/cmd-set-option.c | |
parent | update qle(4) description (diff) | |
download | wireguard-openbsd-f37158306a4e3dbfee79c64f03c414f0f3c4bf11.tar.xz wireguard-openbsd-f37158306a4e3dbfee79c64f03c414f0f3c4bf11.zip |
Style nit - no space between function name and bracket.
Diffstat (limited to 'usr.bin/tmux/cmd-set-option.c')
-rw-r--r-- | usr.bin/tmux/cmd-set-option.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-set-option.c b/usr.bin/tmux/cmd-set-option.c index 4e280a607e5..3368759605d 100644 --- a/usr.bin/tmux/cmd-set-option.c +++ b/usr.bin/tmux/cmd-set-option.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-set-option.c,v 1.64 2014/01/28 23:07:09 nicm Exp $ */ +/* $OpenBSD: cmd-set-option.c,v 1.65 2014/02/14 13:59:01 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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; |