From be457b5263f1f0504e50c241c18e21bb340cef7e Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 29 Oct 2013 16:48:23 +0100 Subject: [PATCH] parse: remove a check that is always true (due to unsigned data type) Signed-off-by: Felix Fietkau --- parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.c b/parse.c index 838a835..63095b5 100644 --- a/parse.c +++ b/parse.c @@ -35,7 +35,7 @@ void uci_parse_section(struct uci_section *s, const struct uci_parse_option *opt if (strcmp(opts[i].name, o->e.name) != 0) continue; - if (opts[i].type >= 0 && opts[i].type != o->type) + if (opts[i].type != o->type) continue; /* match found */ -- 2.11.0