From a112265c8b32101f74815398295d054da1714e21 Mon Sep 17 00:00:00 2001 From: Bryan Phillippe Date: Fri, 20 Aug 2010 09:22:46 -0700 Subject: [PATCH] ofp-parse: Suppress GCC warning about comparing an unsigned value < 0. --- lib/ofp-parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ofp-parse.c b/lib/ofp-parse.c index bcd608ba0..a17d75c04 100644 --- a/lib/ofp-parse.c +++ b/lib/ofp-parse.c @@ -445,7 +445,7 @@ parse_ofp_str(char *string, struct ofp_match *match, struct ofpbuf *actions, if (table_idx && !strcmp(name, "table")) { *table_idx = atoi(value); - if (*table_idx < 0 || *table_idx > 31) { + if (*table_idx > 31) { ovs_fatal(0, "table %s is invalid, " "must be between 0 and 31", value); } -- 2.47.0