From: Paul Cruz Date: Mon, 12 Jun 2017 17:58:34 +0000 (-0700) Subject: added line spacing for clarity X-Git-Tag: v1.3.0~1^2~21^2~18^2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a3d54cf73d9927fe528d7d2b019286f84999a535;p=thirdparty%2Fzstd.git added line spacing for clarity --- diff --git a/programs/fileio.c b/programs/fileio.c index c836020c9..a7812d73a 100644 --- a/programs/fileio.c +++ b/programs/fileio.c @@ -867,18 +867,20 @@ int FIO_listFile(const char* infilename, int displayLevel){ const char* const suffixPtr = strrchr(infilename, '.'); if(!suffixPtr || strcmp(suffixPtr, ZSTD_EXTENSION)){ DISPLAYLEVEL(1, "file %s was not compressed with zstd -- ignoring\n", infilename); - return 1; + DISPLAY("\n"); + return 1; } else{ - U64 const compSize = UTIL_getFileSize(infilename); + U64 const compSize = UTIL_getFileSize(infilename); if(displayLevel<=2){ - DISPLAY("Skippable Non-Skippable Compressed Uncompressed Ratio Check Filename\n"); - DISPLAY(" %7.2f MB\n", (double)compSize/(1 MB)); + DISPLAY("Skippable Non-Skippable Compressed Uncompressed Ratio Check Filename\n"); + DISPLAY(" %7.2f MB\n", (double)compSize/(1 MB)); } else{ DISPLAY("Compressed Size: %.2f MB (%llu B)\n", (double)compSize/(1 MB), compSize); } } + DISPLAY("\n"); return 0; }