mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
qemu: monitor: Fix formatting of 'offset' in qemuMonitorJSONSaveMemory
The offset is unsigned long long thus 'U' must be used. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
5dc567f80a
commit
a59cb27360
@ -3123,7 +3123,7 @@ static int qemuMonitorJSONSaveMemory(qemuMonitorPtr mon,
|
||||
int ret = -1;
|
||||
virJSONValuePtr cmd = qemuMonitorJSONMakeCommand(cmdtype,
|
||||
"U:val", offset,
|
||||
"u:size", length,
|
||||
"U:size", length,
|
||||
"s:filename", path,
|
||||
NULL);
|
||||
virJSONValuePtr reply = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user