From: Yann Collet Date: Sun, 21 Mar 2021 00:29:41 +0000 (-0700) Subject: fix #2549 X-Git-Tag: v1.4.10~19^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fb4a42c7bd47f2970a9a56e213c14526b313123;p=thirdparty%2Fzstd.git fix #2549 --- diff --git a/programs/fileio.c b/programs/fileio.c index 1f1cbb9e3..fd2a0bda3 100644 --- a/programs/fileio.c +++ b/programs/fileio.c @@ -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) {