]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fix #2549 2550/head
authorYann Collet <cyan@fb.com>
Sun, 21 Mar 2021 00:29:41 +0000 (17:29 -0700)
committerYann Collet <cyan@fb.com>
Sun, 21 Mar 2021 00:29:41 +0000 (17:29 -0700)
programs/fileio.c

index 1f1cbb9e3abb26b4644c73727a233f77f4bc28db..fd2a0bda351d5ccbbd6cc4fb1232dc648866e243 100644 (file)
@@ -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) {