From: Jonathon Jongsma Date: Fri, 15 Jul 2022 17:56:59 +0000 (-0500) Subject: conf: add missing break on a switch case X-Git-Tag: v8.6.0-rc1~65 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f52dbac93f146e5a80d5d27b2db1d3549d6580ef;p=thirdparty%2Flibvirt.git conf: add missing break on a switch case This was not causing any problems because all cases below were empty, but in order to avoid future misbehavior, add a break to this case. Signed-off-by: Jonathon Jongsma Reviewed-by: Daniel P. Berrangé --- diff --git a/src/conf/node_device_conf.c b/src/conf/node_device_conf.c index 51746229fc..364bb489bd 100644 --- a/src/conf/node_device_conf.c +++ b/src/conf/node_device_conf.c @@ -770,7 +770,7 @@ virNodeDeviceDefFormat(const virNodeDeviceDef *def) virNodeDeviceCapMdevTypesFormat(&buf, data->ap_matrix.mdev_types, data->ap_matrix.nmdev_types); - + break; case VIR_NODE_DEV_CAP_MDEV_TYPES: case VIR_NODE_DEV_CAP_FC_HOST: case VIR_NODE_DEV_CAP_VPORTS: