]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
zstdcli : align output message with previous message 1631/head
authorEphraim Park <ephiepark@fb.com>
Tue, 4 Jun 2019 16:42:18 +0000 (09:42 -0700)
committerEphraim Park <ephiepark@fb.com>
Tue, 4 Jun 2019 16:42:18 +0000 (09:42 -0700)
programs/fileio.c

index 3fcaf1ac24705ee5eefc4e1f0ce30aefacfcc5c1..3c45a986434edcb82b0ce2a560f1ec7de2b48b2e 100644 (file)
@@ -1225,7 +1225,7 @@ FIO_compressFilename_internal(FIO_prefs_t* const prefs,
         U64 const timeLength_ns = UTIL_clockSpanNano(timeStart);
         double const timeLength_s = (double)timeLength_ns / 1000000000;
         double const cpuLoad_pct = (cpuLoad_s / timeLength_s) * 100;
-        DISPLAYLEVEL(4, "%s: Completed in %.2f sec  (cpu load : %.0f%%)\n",
+        DISPLAYLEVEL(4, "%-20s : Completed in %.2f sec  (cpu load : %.0f%%)\n",
                         srcFileName, timeLength_s, cpuLoad_pct);
     }
     return 0;