Skip to content

Commit

Permalink
Merge pull request #2550 from facebook/vvv_srcSize
Browse files Browse the repository at this point in the history
fix #2549
  • Loading branch information
Cyan4973 authored Mar 22, 2021
2 parents 5158071 + 9fb4a42 commit 8b97931
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 8b97931

Please sign in to comment.