summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8ebbf8e)
raw | patch | inline | side by side (parent: 8ebbf8e)
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | |
Sat, 3 Sep 2011 12:42:09 +0000 (14:42 +0200) | ||
committer | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | |
Wed, 2 Nov 2011 14:36:29 +0000 (15:36 +0100) |
src/options.c | patch | blob | history |
diff --git a/src/options.c b/src/options.c
index e2051c576fe578d527866dea9802fcaea18e0df8..000a5757a6bd7125a559edfaeb848eb9b398977b 100644 (file)
--- a/src/options.c
+++ b/src/options.c
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;