Revision ef37a699

b/arch_init.c
562 562
        if ((i & 63) == 0) {
563 563
            uint64_t t1 = (qemu_get_clock_ns(rt_clock) - bwidth) / 1000000;
564 564
            if (t1 > MAX_WAIT) {
565
                DPRINTF("big wait: " PRIu64 " milliseconds, %d iterations\n",
565
                DPRINTF("big wait: %" PRIu64 " milliseconds, %d iterations\n",
566 566
                        t1, i);
567 567
                break;
568 568
            }
......
587 587

  
588 588
    expected_time = ram_save_remaining() * TARGET_PAGE_SIZE / bwidth;
589 589

  
590
    DPRINTF("ram_save_live: expected(" PRIu64 ") <= max(" PRIu64 ")?\n",
590
    DPRINTF("ram_save_live: expected(%" PRIu64 ") <= max(%" PRIu64 ")?\n",
591 591
            expected_time, migrate_max_downtime());
592 592

  
593 593
    if (expected_time <= migrate_max_downtime()) {
......
799 799
    } while (!(flags & RAM_SAVE_FLAG_EOS));
800 800

  
801 801
done:
802
    DPRINTF("Completed load of VM with exit code %d seq iteration " PRIu64 "\n",
803
            ret, seq_iter);
802
    DPRINTF("Completed load of VM with exit code %d seq iteration "
803
            "%" PRIu64 "\n", ret, seq_iter);
804 804
    return ret;
805 805
}
806 806

  

Also available in: Unified diff