Merge pull request #3370

04a0cc89 slow-hash: fix uint64 type typo (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2018-03-08 18:44:47 +02:00
commit 546e380cab
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 1 additions and 1 deletions

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