From 83cc8da58898cae65f0d5149a35797cb0488858f Mon Sep 17 00:00:00 2001 From: Christian Helmuth Date: Fri, 14 Mar 2014 09:01:03 +0100 Subject: [PATCH] vbox: fix format warning (size_t) in autotest --- ports/src/virtualbox/autotest/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/src/virtualbox/autotest/main.cc b/ports/src/virtualbox/autotest/main.cc index 41053d293f..f26c549433 100644 --- a/ports/src/virtualbox/autotest/main.cc +++ b/ports/src/virtualbox/autotest/main.cc @@ -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; }