From 3f06c69ed4140fe54301717d09f3bf751eff1d8f Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Sun, 19 Jul 2015 09:25:41 -0500 Subject: [PATCH] bin/fstrim: Fix format strings through B_PRI macros --- src/bin/fstrim.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/fstrim.cpp b/src/bin/fstrim.cpp index cc0b47f91a..b09cd41184 100644 --- a/src/bin/fstrim.cpp +++ b/src/bin/fstrim.cpp @@ -77,6 +77,6 @@ main(int argc, char** argv) return EXIT_FAILURE; } - printf("Trimmed %lld bytes from device.\n", trimData.trimmed_size); + printf("Trimmed %" B_PRIu64 " bytes from device.\n", trimData.trimmed_size); return EXIT_SUCCESS; }