From: Ethan Jackson Date: Fri, 17 Jan 2014 00:26:37 +0000 (-0800) Subject: ofp-parse: Fix GCC compiler warnings with -O3. X-Git-Tag: v2.3~758 X-Git-Url: http://git.cascardo.eti.br/?a=commitdiff_plain;h=87f1e513e1388107014fb3df461f30d7f58c6dec;p=cascardo%2Fovs.git ofp-parse: Fix GCC compiler warnings with -O3. When compiling with -O3, GCC can no longer tell that the following warnings are not valid. At any rate, they're easy enough to silence. ofp-parse.c:764:45: error: 'ttl' may be used uninitialized in this function ofp-parse.c:752:17: error: 'ecn' may be used uninitialized in this function Signed-off-by: Ethan Jackson Acked-by: Jarno Rajahalme Acked-by: Ben Pfaff --- diff --git a/lib/ofp-parse.c b/lib/ofp-parse.c index 251adfac8..b254ac6ec 100644 --- a/lib/ofp-parse.c +++ b/lib/ofp-parse.c @@ -639,7 +639,9 @@ parse_named_action(enum ofputil_action_code code, char *error = NULL; uint16_t ethertype = 0; uint16_t vid = 0; - uint8_t tos = 0, ecn, ttl; + uint8_t tos = 0; + uint8_t ecn = 0; + uint8_t ttl = 0; uint8_t pcp = 0; switch (code) {