mirror of
https://github.com/FEX-Emu/xxHash.git
synced 2025-02-03 13:17:46 +00:00
fixed constant
This commit is contained in:
parent
753119ebe0
commit
226d3ffd88
6
xxhsum.c
6
xxhsum.c
@ -561,8 +561,10 @@ static char* XXH_strcatDup(const char* s1, const char* s2)
|
||||
}
|
||||
|
||||
|
||||
static const U32 PRIME32 = 2654435761U;
|
||||
static const U64 PRIME64 = 11400714785074694797ULL;
|
||||
/* use #define to make them constant, required for initialization */
|
||||
#define PRIME32 2654435761U
|
||||
#define PRIME64 11400714785074694797ULL
|
||||
|
||||
/*
|
||||
* Fills a test buffer with pseudorandom data.
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user