Style nit - no space between function name and bracket.

This commit is contained in:
nicm
2014-02-14 13:59:01 +00:00
parent bfb700cf41
commit f835be4bb2
7 changed files with 26 additions and 26 deletions

View File

@ -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;