From 1bfdd956416d13f5c8c8d7599503cc9a9b4e6673 Mon Sep 17 00:00:00 2001 From: John Ferlan Date: Tue, 2 Aug 2016 09:18:56 -0400 Subject: [PATCH] libxl: Fix broken build from libxlDomainCleanup Commit id '7d3b2eb5' missed a closing parenthesis on the ignore_value macro, causing the failure --- src/libxl/libxl_domain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libxl/libxl_domain.c b/src/libxl/libxl_domain.c index d99f9035d3..57ef23518b 100644 --- a/src/libxl/libxl_domain.c +++ b/src/libxl/libxl_domain.c @@ -807,7 +807,7 @@ libxlDomainCleanup(libxlDriverPrivatePtr driver, /* we can't stop the operation even if the script raised an error */ ignore_value(virHookCall(VIR_HOOK_DRIVER_LIBXL, vm->def->name, VIR_HOOK_LIBXL_OP_RELEASE, VIR_HOOK_SUBOP_END, - NULL, xml, NULL); + NULL, xml, NULL)); VIR_FREE(xml); } -- 2.47.2