1
0
mirror of https://github.com/facebook/zstd.git synced 2025-03-07 09:26:03 +02:00

removed fnum from DISPLAY statements

This commit is contained in:
Paul Cruz 2017-06-28 13:00:49 -07:00
parent e667d33b0b
commit 7ac4724bd2

View File

@ -1407,14 +1407,14 @@ static int runTestMode(U32 seed, unsigned numFiles, unsigned const testDurationS
{ size_t const r = testDecodeSimple(&fr);
if (ZSTD_isError(r)) {
DISPLAY("Error in simple mode on test seed %u, fnum %u: %s\n", seedCopy, fnum,
DISPLAY("Error in simple mode on test seed %u: %s\n", seedCopy,
ZSTD_getErrorName(r));
return 1;
}
}
{ size_t const r = testDecodeStreaming(&fr);
if (ZSTD_isError(r)) {
DISPLAY("Error in streaming mode on test seed %u, fnum %u: %s\n", seedCopy, fnum,
DISPLAY("Error in streaming mode on test seed %u: %s\n", seedCopy,
ZSTD_getErrorName(r));
return 1;
}
@ -1423,7 +1423,7 @@ static int runTestMode(U32 seed, unsigned numFiles, unsigned const testDurationS
/* don't create a dictionary that is too big */
size_t const r = testDecodeWithDict(seed);
if (ZSTD_isError(r)) {
DISPLAY("Error in dictionary mode on test seed %u, fnum %u: %s\n", seedCopy, fnum, ZSTD_getErrorName(r));
DISPLAY("Error in dictionary mode on test seed %u: %s\n", seedCopy, ZSTD_getErrorName(r));
return 1;
}
}