migration: Don't use '#' flag of printf format

Signed-off-by: Bihong Yu <yubihong@huawei.com>
Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Message-Id: <1603163448-27122-3-git-send-email-yubihong@huawei.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
Bihong Yu 2020-10-20 11:10:42 +08:00 committed by Dr. David Alan Gilbert
parent 01371c5821
commit 29fccade10
2 changed files with 3 additions and 3 deletions

View File

@ -998,7 +998,7 @@ static int block_load(QEMUFile *f, void *opaque, int version_id)
(addr == 100) ? '\n' : '\r'); (addr == 100) ? '\n' : '\r');
fflush(stdout); fflush(stdout);
} else if (!(flags & BLK_MIG_FLAG_EOS)) { } else if (!(flags & BLK_MIG_FLAG_EOS)) {
fprintf(stderr, "Unknown block migration flags: %#x\n", flags); fprintf(stderr, "Unknown block migration flags: 0x%x\n", flags);
return -EINVAL; return -EINVAL;
} }
ret = qemu_file_get_error(f); ret = qemu_file_get_error(f);

View File

@ -3298,7 +3298,7 @@ static int ram_load_postcopy(QEMUFile *f)
multifd_recv_sync_main(); multifd_recv_sync_main();
break; break;
default: default:
error_report("Unknown combination of migration flags: %#x" error_report("Unknown combination of migration flags: 0x%x"
" (postcopy mode)", flags); " (postcopy mode)", flags);
ret = -EINVAL; ret = -EINVAL;
break; break;
@ -3576,7 +3576,7 @@ static int ram_load_precopy(QEMUFile *f)
if (flags & RAM_SAVE_FLAG_HOOK) { if (flags & RAM_SAVE_FLAG_HOOK) {
ram_control_load_hook(f, RAM_CONTROL_HOOK, NULL); ram_control_load_hook(f, RAM_CONTROL_HOOK, NULL);
} else { } else {
error_report("Unknown combination of migration flags: %#x", error_report("Unknown combination of migration flags: 0x%x",
flags); flags);
ret = -EINVAL; ret = -EINVAL;
} }