build: fix broken build

* src/libxl/libxl_driver.c (libxlDomainUndefineFlags): Use correct
enum value.
* src/remote_protocol-structs (remote_procedure): Likewise.
This commit is contained in:
Eric Blake 2011-07-19 21:33:51 -06:00
parent 83e849c197
commit 574953309f
2 changed files with 2 additions and 2 deletions

View File

@ -2766,7 +2766,7 @@ libxlDomainUndefineFlags(virDomainPtr dom,
if (virFileExists(name)) {
if (flags & VIR_DOMAIN_UNDEFINE_MANAGED_SAVE) {
if (unlink(name) < 0) {
libxlError(VIR_ERR_INTERNAL_ERR,
libxlError(VIR_ERR_INTERNAL_ERROR,
_("Failed to remove domain managed save image"));
goto cleanup;
}

View File

@ -1863,5 +1863,5 @@ enum remote_procedure {
REMOTE_PROC_NODE_GET_MEMORY_STATS = 228,
REMOTE_PROC_DOMAIN_GET_CONTROL_INFO = 229,
REMOTE_PROC_DOMAIN_GET_VCPU_PIN_INFO = 230,
REMOTE_PROC_DOMAIN_GET_VCPU_PIN_INFO = 231,
REMOTE_PROC_DOMAIN_UNDEFINE_FLAGS = 231,
};