mirror of
https://github.com/FEX-Emu/xxHash.git
synced 2024-11-23 14:39:40 +00:00
fixed incorrect assert
This commit is contained in:
parent
a7a617584c
commit
00833b2631
2
xxhsum.c
2
xxhsum.c
@ -1496,7 +1496,7 @@ static int XSUM_hashFile(const char* fileName,
|
||||
FILE* inFile;
|
||||
Multihash hashValue;
|
||||
assert(displayEndianess==big_endian || displayEndianess==little_endian);
|
||||
assert(displayEndianess==display_gnu || displayEndianess==display_bsd);
|
||||
assert(convention==display_gnu || convention==display_bsd);
|
||||
|
||||
/* Check file existence */
|
||||
if (fileName == stdinName) {
|
||||
|
Loading…
Reference in New Issue
Block a user