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; }