devices: Fix coverity discovered 9/13/2017 14/8414/2
authorSteven <sluong@cisco.com>
Wed, 13 Sep 2017 13:18:46 +0000 (06:18 -0700)
committerFlorin Coras <florin.coras@gmail.com>
Wed, 13 Sep 2017 17:27:45 +0000 (17:27 +0000)
Missing a break statement in the case

Change-Id: I1b1e198748343bc116ee0eaf9012abc3be15c40a
Signed-off-by: Steven <sluong@cisco.com>
src/plugins/dpdk/device/format.c

index 21475ac..697bdbe 100644 (file)
@@ -320,6 +320,7 @@ format_dpdk_device_type (u8 * s, va_list * args)
 
     case VNET_DPDK_PMD_THUNDERX:
       dev_type = "Cavium ThunderX";
+      break;
 
     case VNET_DPDK_PMD_VHOST_ETHER:
       dev_type = "VhostEthernet";