From: Ephraim Park Date: Tue, 4 Jun 2019 16:42:18 +0000 (-0700) Subject: zstdcli : align output message with previous message X-Git-Tag: v1.4.1^2~34^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1631%2Fhead;p=thirdparty%2Fzstd.git zstdcli : align output message with previous message --- diff --git a/programs/fileio.c b/programs/fileio.c index 3fcaf1ac2..3c45a9864 100644 --- a/programs/fileio.c +++ b/programs/fileio.c @@ -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;