[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 03/16] migration: Don't use '#' flag of printf format
From: |
Dr. David Alan Gilbert (git) |
Subject: |
[PULL 03/16] migration: Don't use '#' flag of printf format |
Date: |
Mon, 26 Oct 2020 16:19:39 +0000 |
From: Bihong Yu <yubihong@huawei.com>
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>
---
migration/block.c | 2 +-
migration/ram.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/migration/block.c b/migration/block.c
index 4b8576b8d6..273392be78 100644
--- a/migration/block.c
+++ b/migration/block.c
@@ -998,7 +998,7 @@ static int block_load(QEMUFile *f, void *opaque, int
version_id)
(addr == 100) ? '\n' : '\r');
fflush(stdout);
} 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;
}
ret = qemu_file_get_error(f);
diff --git a/migration/ram.c b/migration/ram.c
index 433489d633..6ed4f9e507 100644
--- a/migration/ram.c
+++ b/migration/ram.c
@@ -3298,7 +3298,7 @@ static int ram_load_postcopy(QEMUFile *f)
multifd_recv_sync_main();
break;
default:
- error_report("Unknown combination of migration flags: %#x"
+ error_report("Unknown combination of migration flags: 0x%x"
" (postcopy mode)", flags);
ret = -EINVAL;
break;
@@ -3576,7 +3576,7 @@ static int ram_load_precopy(QEMUFile *f)
if (flags & RAM_SAVE_FLAG_HOOK) {
ram_control_load_hook(f, RAM_CONTROL_HOOK, NULL);
} else {
- error_report("Unknown combination of migration flags: %#x",
+ error_report("Unknown combination of migration flags: 0x%x",
flags);
ret = -EINVAL;
}
--
2.28.0
- [PULL 00/16] migration queue, Dr. David Alan Gilbert (git), 2020/10/26
- [PULL 02/16] migration: Do not use C99 // comments, Dr. David Alan Gilbert (git), 2020/10/26
- [PULL 01/16] migration: Drop unused VMSTATE_FLOAT64 support, Dr. David Alan Gilbert (git), 2020/10/26
- [PULL 03/16] migration: Don't use '#' flag of printf format,
Dr. David Alan Gilbert (git) <=
- [PULL 04/16] migration: Add spaces around operator, Dr. David Alan Gilbert (git), 2020/10/26
- [PULL 05/16] migration: Open brace '{' following struct go on the same line, Dr. David Alan Gilbert (git), 2020/10/26
- [PULL 06/16] migration: Add braces {} for if statement, Dr. David Alan Gilbert (git), 2020/10/26
- [PULL 07/16] migration: Do not initialise statics and globals to 0 or NULL, Dr. David Alan Gilbert (git), 2020/10/26
- [PULL 08/16] migration: Open brace '{' following function declarations go on the next line, Dr. David Alan Gilbert (git), 2020/10/26
- [PULL 09/16] migration: Delete redundant spaces, Dr. David Alan Gilbert (git), 2020/10/26
- [PULL 11/16] migration: Pass incoming state into qemu_ufd_copy_ioctl(), Dr. David Alan Gilbert (git), 2020/10/26
- [PULL 10/16] migration: using trace_ to replace DPRINTF, Dr. David Alan Gilbert (git), 2020/10/26
- [PULL 12/16] migration: Introduce migrate_send_rp_message_req_pages(), Dr. David Alan Gilbert (git), 2020/10/26
- [PULL 13/16] migration: Maintain postcopy faulted addresses, Dr. David Alan Gilbert (git), 2020/10/26