savevm-async: fix function name in error message

which also makes it distinguishable from the other
"qemu_savevm_state_iterate error" message.

Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
This commit is contained in:
Fiona Ebner 2023-01-23 12:43:23 +01:00 committed by Thomas Lamprecht
parent baf4e3132d
commit a02081501a

View File

@ -347,7 +347,7 @@ index 0000000000..05d394c0e2
+ (void)qemu_savevm_state_complete_precopy(snap_state.file, false, false); + (void)qemu_savevm_state_complete_precopy(snap_state.file, false, false);
+ ret = qemu_file_get_error(snap_state.file); + ret = qemu_file_get_error(snap_state.file);
+ if (ret < 0) { + if (ret < 0) {
+ save_snapshot_error("qemu_savevm_state_iterate error %d", ret); + save_snapshot_error("qemu_savevm_state_complete_precopy error %d", ret);
+ } + }
+ } + }
+ +