Code

options: remove double-semicolon
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>
Sat, 3 Sep 2011 12:42:09 +0000 (14:42 +0200)
committerJonathan Neuschäfer <j.neuschaefer@gmx.net>
Wed, 2 Nov 2011 14:36:29 +0000 (15:36 +0100)
src/options.c

index e2051c576fe578d527866dea9802fcaea18e0df8..000a5757a6bd7125a559edfaeb848eb9b398977b 100644 (file)
@@ -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;