aboutsummaryrefslogtreecommitdiff
path: root/src/crypto
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-07 00:44:30 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-07 09:48:58 +0000
commit04a0cc89cf30f5c5c9a5c88c5e3c1b10a2c0f7e4 (patch)
tree5086ee84566483119f172a1e3bd21c1022e93ea1 /src/crypto
parentMerge pull request #3253 (diff)
downloadmonero-04a0cc89cf30f5c5c9a5c88c5e3c1b10a2c0f7e4.tar.xz
slow-hash: fix uint64 type typo
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/slow-hash.c2
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;
}