Skip to content

Commit

Permalink
Fix Benchmark Corruption Display
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhandte committed Aug 17, 2021
1 parent 6a25804 commit c65a517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/benchzstd.c
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ BMK_benchMemAdvancedNoAlloc(
DISPLAY("%02X ", ((const BYTE*)srcBuffer)[u+n]);
DISPLAY(" \n");
DISPLAY("decode: ");
for (n=lowest; n>0; n++)
for (n=lowest; n>0; n--)
DISPLAY("%02X ", resultBuffer[u-n]);
DISPLAY(" :%02X: ", resultBuffer[u]);
for (n=1; n<3; n++)
Expand Down

0 comments on commit c65a517

Please sign in to comment.