Skip to content

Commit

Permalink
bin/fstrim: Fix format strings through B_PRI macros
Browse files Browse the repository at this point in the history
  • Loading branch information
kallisti5 committed Jul 19, 2015
1 parent ec4e0ae commit 3f06c69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/fstrim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 3f06c69

Please sign in to comment.