From 7ac4724bd2c02ee10291561b07296b5439c0ee10 Mon Sep 17 00:00:00 2001 From: Paul Cruz Date: Wed, 28 Jun 2017 13:00:49 -0700 Subject: [PATCH] removed fnum from DISPLAY statements --- tests/decodecorpus.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } } -- 2.47.2