slow-hash: fix uint64 type typo

This commit is contained in:
moneromooo-monero 2018-03-07 00:44:30 +00:00
parent c102c49da5
commit 04a0cc89cf
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -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;
}