From: John Ferlan Date: Tue, 2 Aug 2016 13:18:56 +0000 (-0400) Subject: libxl: Fix broken build from libxlDomainCleanup X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=1bfdd956416d13f5c8c8d7599503cc9a9b4e6673;p=libvirt.git libxl: Fix broken build from libxlDomainCleanup Commit id '7d3b2eb5' missed a closing parenthesis on the ignore_value macro, causing the failure --- 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); }