CLI supports Legacy formats v0.4+

This commit is contained in:
Yann Collet
2016-08-28 12:47:17 -07:00
parent 4b7b9fca32
commit 1c69baa1a9
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -610,7 +610,7 @@ static void FIO_fwriteSparseEnd(FILE* file, unsigned storedSkips)
unsigned long long FIO_decompressFrame(dRess_t ress,
FILE* foutput, FILE* finput, size_t alreadyLoaded)
{
U64 frameSize = 0;
U64 frameSize = 0;
size_t readSize;
U32 storedSkips = 0;
@@ -721,7 +721,7 @@ static int FIO_decompressSrcFile(dRess_t ress, const char* srcFileName)
/* Final Status */
DISPLAYLEVEL(2, "\r%79s\r", "");
DISPLAYLEVEL(2, "%-20.20s: %llu bytes \n", srcFileName, filesize);
DISPLAYLEVEL(2, "%-20s: %llu bytes \n", srcFileName, filesize);
/* Close */
if (fclose(srcFile)) EXM_THROW(33, "zstd: %s close error", srcFileName); /* error should never happen */