From fd0c0d036f5efdecffc9b07024caf6be5a3eee3a Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Tue, 25 Oct 2011 17:04:41 +0100 Subject: [PATCH] libxl: add missing "break;" to do_pci_remove Otherwise we erroneously fall through the LIBXL_DOMAIN_TYPE_PV case into the "default: abort()". (I'm sure we fixed this once already...) Signed-off-by: Ian Campbell Tested-by: Dario Faggioli Committed-by: Ian Jackson --- tools/libxl/libxl_pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/libxl/libxl_pci.c b/tools/libxl/libxl_pci.c index 842d5b0463..33dd0606d4 100644 --- a/tools/libxl/libxl_pci.c +++ b/tools/libxl/libxl_pci.c @@ -930,6 +930,7 @@ skip1: } } fclose(f); + break; } default: abort(); -- 2.30.2