summaryrefslogtreecommitdiffstats
path: root/tests/frametest.c
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2020-10-02 06:27:02 (GMT)
committerYann Collet <cyan@fb.com>2020-10-02 06:27:02 (GMT)
commita88c8fb43875361e2dd6a0c9f84099c24dc89671 (patch)
tree8e1074d07b97ebce4efdf3a71cef01770ca37be2 /tests/frametest.c
parent1e5ff76b36c5eaa35aea78f690be045d496a0f3a (diff)
downloadlz4-a88c8fb43875361e2dd6a0c9f84099c24dc89671.zip
lz4-a88c8fb43875361e2dd6a0c9f84099c24dc89671.tar.gz
lz4-a88c8fb43875361e2dd6a0c9f84099c24dc89671.tar.bz2
make it possible to select SCANBUILD binary on command line
Diffstat (limited to 'tests/frametest.c')
-rw-r--r--tests/frametest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/frametest.c b/tests/frametest.c
index 4d91bdf..70f949d 100644
--- a/tests/frametest.c
+++ b/tests/frametest.c
@@ -1037,7 +1037,7 @@ int fuzzerTests(U32 seed, unsigned nbTests, unsigned startTest, double compressi
op += 4;
if ((prefsPtr!= NULL) && prefsPtr->frameInfo.blockChecksumFlag) {
U32 const bc32 = XXH32(op, 0, 0);
- op[0] = (BYTE)bc32; /* little endian format */
+ op[0] = (BYTE)bc32; /* little endian format */
op[1] = (BYTE)(bc32>>8);
op[2] = (BYTE)(bc32>>16);
op[3] = (BYTE)(bc32>>24);