vbox: fix format warning (size_t) in autotest

This commit is contained in:
Christian Helmuth 2014-03-14 09:01:03 +01:00 committed by Norman Feske
parent da9e764c47
commit 83cc8da588

View File

@ -28,7 +28,7 @@ int main(int argc, char **argv)
close(fd_src);
close(fd_dst);
printf("wrote %zu bytes to overlay.vdi - res=%d\n", sum, len);
printf("wrote %zu bytes to overlay.vdi - res=%zu\n", sum, len);
printf("vbox_auto_test_helper is done.\n");
return 0;
}