From: Jonathan Neuschäfer Date: Sat, 3 Sep 2011 12:42:09 +0000 (+0200) Subject: options: remove double-semicolon X-Git-Tag: release-0.20~60^2~8 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=61b941c2bd5a9c99a5c76d2efb660931cbcf90a1;p=ncmpc.git options: remove double-semicolon --- diff --git a/src/options.c b/src/options.c index e2051c5..000a575 100644 --- a/src/options.c +++ b/src/options.c @@ -97,9 +97,9 @@ lookup_option(int s, char *l) for (i = 0; i < option_table_size; ++i) { if (l && strcmp(l, option_table[i].longopt) == 0) - return &option_table[i];; + return &option_table[i]; if (s && s == option_table[i].shortopt) - return &option_table[i];; + return &option_table[i]; } return NULL;