Commit 5016e2df authored by Christoffer Dall's avatar Christoffer Dall Committed by Juan Quintela
Browse files

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: default avatarChristoffer Dall <christoffer.dall@linaro.org>
Signed-off-by: default avatarJuan Quintela <quintela@redhat.com>
parent 7102400d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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 {