mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-06-14 05:31:32 +00:00
use correct format to print time_t (%zd)
This commit is contained in:
parent
da21653bfb
commit
a4788a6e14
@ -123,7 +123,7 @@ main (int argc, char **argv)
|
||||
time_t delay = time(NULL) - starttime;
|
||||
if (delay <= 0) delay = 1;
|
||||
|
||||
fprintf (stderr, "%zu bytes copied, %d s, %.2f MiB/s\n", total, delay,
|
||||
fprintf (stderr, "%zu bytes copied, %zd s, %.2f MiB/s\n", total, delay,
|
||||
(total/(1024*1024))/(float)delay);
|
||||
|
||||
outname = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user