Skip to content

Commit

Permalink
test fix of XXH3_hashLong_64b_defaultSecret_selection()
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyan4973 committed Aug 6, 2024
1 parent 46e863e commit 2b919e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xxh_x86dispatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -729,8 +729,8 @@ static XXH_CONSTRUCTOR void XXH_setDispatch(void)
/*! @cond Doxygen ignores this part */

static XXH64_hash_t
XXH3_hashLong_64b_defaultSecret_selection(const void* input, size_t len,
XXH64_hash_t seed64, const xxh_u8* secret, size_t secretLen)
XXH3_hashLong_64b_defaultSecret_selection(const void* XXH_RESTRICT input, size_t len,
XXH64_hash_t seed64, const xxh_u8* XXH_RESTRICT secret, size_t secretLen)
{
(void)seed64; (void)secret; (void)secretLen;
if (XXH_DISPATCH_MAYBE_NULL && XXH_g_dispatch.hashLong64_default == NULL)
Expand Down

0 comments on commit 2b919e9

Please sign in to comment.