Convert tabs to spaces
This commit is contained in:
committed by
W. Felix Handte
parent
77001f00fb
commit
35576e63ce
+8
-8
@@ -1544,8 +1544,8 @@ FIO_compressFilename_internal(FIO_ctx_t* const fCtx,
|
||||
U64 readsize = 0;
|
||||
U64 compressedfilesize = 0;
|
||||
U64 const fileSize = UTIL_getFileSize(srcFileName);
|
||||
char inputSizeStr[8] = "";
|
||||
char outputSizeStr[8] = "";
|
||||
char inputSizeStr[8] = "";
|
||||
char outputSizeStr[8] = "";
|
||||
|
||||
DISPLAYLEVEL(5, "%s: %llu bytes \n", srcFileName, (unsigned long long)fileSize);
|
||||
|
||||
@@ -1601,8 +1601,8 @@ FIO_compressFilename_internal(FIO_ctx_t* const fCtx,
|
||||
(unsigned long long)readsize, (unsigned long long) compressedfilesize,
|
||||
dstFileName);
|
||||
} else {
|
||||
humanSize((unsigned long long) readsize, inputSizeStr);
|
||||
humanSize((unsigned long long) compressedfilesize, outputSizeStr);
|
||||
humanSize((unsigned long long) readsize, inputSizeStr);
|
||||
humanSize((unsigned long long) compressedfilesize, outputSizeStr);
|
||||
|
||||
DISPLAYLEVEL(2,"%-20s :%6.2f%% (%s => %s, %s) \n",
|
||||
srcFileName,
|
||||
@@ -1841,8 +1841,8 @@ int FIO_compressMultipleFilenames(FIO_ctx_t* const fCtx,
|
||||
{
|
||||
int status;
|
||||
int error = 0;
|
||||
char inputSizeStr[8] = "";
|
||||
char outputSizeStr[8] = "";
|
||||
char inputSizeStr[8] = "";
|
||||
char outputSizeStr[8] = "";
|
||||
cRess_t ress = FIO_createCResources(prefs, dictFileName,
|
||||
FIO_getLargestFileSize(inFileNamesTable, (unsigned)fCtx->nbFilesTotal),
|
||||
compressionLevel, comprParams);
|
||||
@@ -1898,8 +1898,8 @@ int FIO_compressMultipleFilenames(FIO_ctx_t* const fCtx,
|
||||
}
|
||||
|
||||
if (fCtx->nbFilesProcessed >= 1 && fCtx->nbFilesTotal > 1 && fCtx->totalBytesInput != 0) {
|
||||
humanSize((unsigned long long) fCtx->totalBytesInput, inputSizeStr);
|
||||
humanSize((unsigned long long) fCtx->totalBytesOutput, outputSizeStr);
|
||||
humanSize((unsigned long long) fCtx->totalBytesInput, inputSizeStr);
|
||||
humanSize((unsigned long long) fCtx->totalBytesOutput, outputSizeStr);
|
||||
|
||||
DISPLAYLEVEL(2, "\r%79s\r", "");
|
||||
DISPLAYLEVEL(2, "%3d files compressed : %.2f%% (%s => %s bytes)\n", fCtx->nbFilesProcessed,
|
||||
|
||||
Reference in New Issue
Block a user