Skip to content

Commit

Permalink
Merge pull request monero-project#3370
Browse files Browse the repository at this point in the history
04a0cc8 slow-hash: fix uint64 type typo (moneromooo-monero)
  • Loading branch information
fluffypony committed Mar 8, 2018
2 parents 3a12f25 + 04a0cc8 commit 546e380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crypto/slow-hash.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 546e380

Please sign in to comment.