mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-12 13:17:58 +03:00
xenconfig: fix compilation error
Commit 03d0959a
introduced a compilation error in
src/xenconfig/xen_xl.c on ARM. Found by Xen's osstest
http://logs.test-lab.xenproject.org/osstest/logs/116216/build-armhf-libvirt/6.ts-libvirt-build.log
This commit is contained in:
parent
9061b3090e
commit
ce3b585bc4
@ -1261,11 +1261,11 @@ xenFormatXLVnuma(virConfValuePtr list,
|
||||
numaVnode->list = NULL;
|
||||
|
||||
/* pnode */
|
||||
virBufferAsprintf(&buf, "pnode=%ld", node);
|
||||
virBufferAsprintf(&buf, "pnode=%zu", node);
|
||||
xenFormatXLVnode(numaVnode, &buf);
|
||||
|
||||
/* size */
|
||||
virBufferAsprintf(&buf, "size=%ld", nodeSize);
|
||||
virBufferAsprintf(&buf, "size=%zu", nodeSize);
|
||||
xenFormatXLVnode(numaVnode, &buf);
|
||||
|
||||
/* vcpus */
|
||||
|
Loading…
Reference in New Issue
Block a user