From: Jo-Philipp Wich Date: Sat, 27 May 2017 10:29:55 +0000 (+0200) Subject: options: remove stray continue statement X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=commitdiff_plain;h=a4d98aea373e04f3fdc3c492c1688ba52ce490a9 options: remove stray continue statement The continue statement was mistakingly copy-pasted from other error handling code. Signed-off-by: Jo-Philipp Wich --- diff --git a/options.c b/options.c index ae6bf5d..f686cf0 100644 --- a/options.c +++ b/options.c @@ -991,7 +991,6 @@ fw3_parse_options(void *s, const struct fw3_option *opts, { warn_elem(e, "has invalid value '%s'", p); valid = false; - continue; } } }