]> git.proxmox.com Git - ovs.git/commitdiff
ofp-meter: Fix ds_put_format that treats enum type as short integer
authorYifeng Sun <pkusunyifeng@gmail.com>
Tue, 26 Jun 2018 21:23:49 +0000 (14:23 -0700)
committerBen Pfaff <blp@ovn.org>
Wed, 27 Jun 2018 02:28:06 +0000 (19:28 -0700)
Travis job fails because of the below error and this patch solves this issue.

lib/ofp-meter.c:340:48: error: format specifies type 'unsigned short'
but the argument has underlying type 'unsigned int' [-Werror,-Wformat]
        ds_put_format(s, "flags:0x%"PRIx16" ", flags);

Signed-off-by: Yifeng Sun <pkusunyifeng@gmail.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
lib/ofp-meter.c

index e63daabaf5f9ff74fbba994df45cc51397cd3682..4e5cb52fd7489e02db2645ef375a76f252265404 100644 (file)
@@ -337,7 +337,7 @@ ofp_print_meter_flags(struct ds *s, enum ofp13_meter_flags flags)
 
     flags &= ~(OFPMF13_KBPS | OFPMF13_PKTPS | OFPMF13_BURST | OFPMF13_STATS);
     if (flags) {
-        ds_put_format(s, "flags:0x%"PRIx16" ", flags);
+        ds_put_format(s, "flags:0x%x", (unsigned)flags);
     }
 }