Skip to content
/ lz4 Public
forked from lz4/lz4

Commit

Permalink
Merge pull request lz4#984 from t-mat/fix-wconversion-warning
Browse files Browse the repository at this point in the history
Fix -Wshorten-64-to-32 warning
  • Loading branch information
Cyan4973 committed May 27, 2021
2 parents 7a966c1 + 4a9bbc2 commit d00319b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/dictionaryRandomAccess.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ void test_compress(FILE* outFp, FILE* inpFp, void *dict, int dictSize)
while (ptr != offsetsEnd) {
write_int(outFp, *ptr++);
}
write_int(outFp, offsetsEnd - offsets);
write_int(outFp, (int) (offsetsEnd - offsets));
}
}

Expand Down

0 comments on commit d00319b

Please sign in to comment.