Skip to content

Commit

Permalink
fix #2549
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyan4973 committed Mar 21, 2021
1 parent 5158071 commit 9fb4a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/fileio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1509,7 +1509,7 @@ FIO_compressFilename_internal(FIO_ctx_t* const fCtx,
U64 readsize = 0;
U64 compressedfilesize = 0;
U64 const fileSize = UTIL_getFileSize(srcFileName);
DISPLAYLEVEL(5, "%s: %u bytes \n", srcFileName, (unsigned)fileSize);
DISPLAYLEVEL(5, "%s: %llu bytes \n", srcFileName, (unsigned long long)fileSize);

/* compression format selection */
switch (prefs->compressionType) {
Expand Down

0 comments on commit 9fb4a42

Please sign in to comment.