1
0
mirror of https://github.com/facebook/zstd.git synced 2025-08-01 09:47:01 +03:00

fix debug trace

This commit is contained in:
Yann Collet
2018-11-13 13:27:22 -08:00
parent e4abd28769
commit a29e3d1d01

View File

@ -140,7 +140,7 @@ BMK_runOutcome_t BMK_benchFunction(BMK_benchParams_t p,
if ((p.errorFn != NULL) && (p.errorFn(res))) {
RETURN_QUIET_ERROR(BMK_runOutcome_error(res),
"Function benchmark failed on block %u (of size %u) with error %i",
blockNb, (U32)p.srcBuffers[blockNb], (int)res);
blockNb, (U32)p.srcSizes[blockNb], (int)res);
}
dstSize += res;
} }