Commit id '7d3b2eb5' missed a closing parenthesis on the ignore_value
macro, causing the failure
Signed-off-by: John Ferlan <jferlan(a)redhat.com>
---
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 d99f903..57ef235 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.7.4