From 87f1e513e1388107014fb3df461f30d7f58c6dec Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Thu, 16 Jan 2014 16:26:37 -0800 Subject: [PATCH] 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 --- lib/ofp-parse.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) { -- 2.20.1