From: Wei Gang Date: Fri, 10 Dec 2010 18:16:07 +0000 (+0000) Subject: tools/ocaml: fix a typo in xc_lib.c:xc_domain_set_vpt_align X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3b45ec8c70bfe5a252fa70d9f8c2c75d4c6688e0;p=xen.git tools/ocaml: fix a typo in xc_lib.c:xc_domain_set_vpt_align Fix a typo in xc_lib.c. Signed-off-by: Wei Gang Acked-by: Ian Jackson Signed-off-by: Ian Jackson --- diff --git a/tools/ocaml/libs/xc/xc_lib.c b/tools/ocaml/libs/xc/xc_lib.c index 7d33ce8ee4..2006fd676f 100644 --- a/tools/ocaml/libs/xc/xc_lib.c +++ b/tools/ocaml/libs/xc/xc_lib.c @@ -1522,7 +1522,7 @@ int xc_domain_set_hpet(int handle, unsigned int domid, int hpet) int xc_domain_set_vpt_align(int handle, unsigned int domid, int vpt_align) { - return xc_set_hvm_param(handle, domid, HVM_PARAM_HPET_ENABLED, (unsigned long) vpt_align); + return xc_set_hvm_param(handle, domid, HVM_PARAM_VPT_ALIGN, (unsigned long) vpt_align); } int xc_domain_get_acpi_s_state(int handle, unsigned int domid)