diff options
author | Fam Zheng | 2016-09-27 11:20:11 +0200 |
---|---|---|
committer | Fam Zheng | 2016-09-29 05:43:17 +0200 |
commit | 84d0984dfe336f24109a6792d06aad0e9ae5e0a6 (patch) | |
tree | eb3d5eb5cbaafa1333a56cdaa762df97a13a12a2 /hw/xenpv | |
parent | Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (diff) | |
download | qemu-84d0984dfe336f24109a6792d06aad0e9ae5e0a6.tar.gz qemu-84d0984dfe336f24109a6792d06aad0e9ae5e0a6.tar.xz qemu-84d0984dfe336f24109a6792d06aad0e9ae5e0a6.zip |
xenpv: Fix qemu_uuid compiling error
9c5ce8db2 switched the type of qemu_uuid and this should have followed.
Fix it.
Signed-off-by: Fam Zheng <famz@redhat.com>
Message-Id: <1474968011-29382-1-git-send-email-famz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
Diffstat (limited to 'hw/xenpv')
-rw-r--r-- | hw/xenpv/xen_domainbuild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xenpv/xen_domainbuild.c b/hw/xenpv/xen_domainbuild.c index b439b0ed5d..457a8976c3 100644 --- a/hw/xenpv/xen_domainbuild.c +++ b/hw/xenpv/xen_domainbuild.c @@ -232,7 +232,7 @@ int xen_domain_build_pv(const char *kernel, const char *ramdisk, unsigned long xenstore_mfn = 0, console_mfn = 0; int rc; - memcpy(uuid, qemu_uuid, sizeof(uuid)); + memcpy(uuid, &qemu_uuid, sizeof(uuid)); rc = xen_domain_create(xen_xc, ssidref, uuid, flags, &xen_domid); if (rc < 0) { fprintf(stderr, "xen: xc_domain_create() failed\n"); |