From f835be4bb25f629613bbb7e0195a5c4fb12abf3e Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 14 Feb 2014 13:59:01 +0000 Subject: Style nit - no space between function name and bracket. --- cmd-set-option.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd-set-option.c') diff --git a/cmd-set-option.c b/cmd-set-option.c index b661913f..046bebd6 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; -- cgit