[libvirt] [PATCH v2 13/14] tools: handle missing switch enum cases

Daniel P. Berrangé berrange at redhat.com
Tue Feb 20 17:08:21 UTC 2018


Cast away enum type in places where we don't wish to cover all cases.

Signed-off-by: Daniel P. Berrangé <berrange at redhat.com>
---
 tools/virt-host-validate-qemu.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/virt-host-validate-qemu.c b/tools/virt-host-validate-qemu.c
index 2aa396e3ab..d7573ea8b3 100644
--- a/tools/virt-host-validate-qemu.c
+++ b/tools/virt-host-validate-qemu.c
@@ -33,13 +33,14 @@ int virHostValidateQEMU(void)
     int ret = 0;
     bool hasHwVirt = false;
     bool hasVirtFlag = false;
+    virArch arch = virArchFromHost();
     const char *kvmhint = _("Check that CPU and firmware supports virtualization "
                             "and kvm module is loaded");
 
     if (!(flags = virHostValidateGetCPUFlags()))
         return -1;
 
-    switch (virArchFromHost()) {
+    switch ((int)arch) {
     case VIR_ARCH_I686:
     case VIR_ARCH_X86_64:
         hasVirtFlag = true;
-- 
2.14.3




More information about the libvir-list mailing list