diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-03-08 18:44:47 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-03-08 18:44:47 +0200 |
commit | 546e380cab9d4bbc5050038d1238a7c7140bbbcf (patch) | |
tree | 5dd7bab2628d466e051c4bac9dbf34f2404ff3f4 | |
parent | Merge pull request #3365 (diff) | |
parent | slow-hash: fix uint64 type typo (diff) | |
download | monero-546e380cab9d4bbc5050038d1238a7c7140bbbcf.tar.xz |
Merge pull request #3370
04a0cc89 slow-hash: fix uint64 type typo (moneromooo-monero)
-rw-r--r-- | src/crypto/slow-hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index c733d7b39..8c7dad8e0 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -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; } |