mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
slow-hash: fix uint64 type typo
This commit is contained in:
parent
c102c49da5
commit
04a0cc89cf
1 changed files with 1 additions and 1 deletions
|
@ -727,7 +727,7 @@ void slow_hash_free_state(void)
|
|||
|
||||
#define U64(x) ((uint64_t *) (x))
|
||||
|
||||
STATIC INLINE void xor64(uint64 *a, const uint64 b)
|
||||
STATIC INLINE void xor64(uint64_t *a, const uint64_t b)
|
||||
{
|
||||
*a ^= b;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue