mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 19:33:39 +08:00
migration: Fix debug print type
The printf args are uint64_t and with -Werr QEMU doesn't compile with migration debugging turned on unless this is fixed. Fix it. Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org> Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
7102400d40
commit
5016e2df56
@ -567,7 +567,8 @@ static void *migration_thread(void *opaque)
|
||||
if (!qemu_file_rate_limit(s->file)) {
|
||||
DPRINTF("iterate\n");
|
||||
pending_size = qemu_savevm_state_pending(s->file, max_size);
|
||||
DPRINTF("pending size %lu max %lu\n", pending_size, max_size);
|
||||
DPRINTF("pending size %" PRIu64 " max %" PRIu64 "\n",
|
||||
pending_size, max_size);
|
||||
if (pending_size && pending_size >= max_size) {
|
||||
qemu_savevm_state_iterate(s->file);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user