From: Paul Cruz Date: Wed, 28 Jun 2017 20:00:49 +0000 (-0700) Subject: removed fnum from DISPLAY statements X-Git-Tag: v1.3.0~1^2~13^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F740%2Fhead;p=thirdparty%2Fzstd.git removed fnum from DISPLAY statements --- diff --git a/tests/decodecorpus.c b/tests/decodecorpus.c index a377169f3..eaf074578 100644 --- a/tests/decodecorpus.c +++ b/tests/decodecorpus.c @@ -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; } }