bin/fstrim: Fix format strings through B_PRI macros

This commit is contained in:
Alexander von Gluck IV
2015-07-19 09:25:41 -05:00
parent ec4e0aea76
commit 3f06c69ed4
+1 -1
View File
@@ -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;
}