diff options
author | redfish <redfish@galactica.pw> | 2016-05-18 00:56:25 -0400 |
---|---|---|
committer | redfish <redfish@galactica.pw> | 2016-05-18 01:02:17 -0400 |
commit | 21dbc95b479ee935908fdcc0be5fe377c9fa003d (patch) | |
tree | f6fa6fa38ddb6247558e1baec8152379c40f10ec | |
parent | crypto: slow-hash: remove unused hash list for ARM (diff) | |
download | monero-21dbc95b479ee935908fdcc0be5fe377c9fa003d.tar.xz |
crypto: slow-hash: fix misleading indent
GCC warned about this one.
Diffstat (limited to '')
-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 8002b276a..ee7e0ebe8 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -820,7 +820,7 @@ void cn_slow_hash(const void *data, size_t length, char *hash) { for(j = 0; j < INIT_SIZE_BLK; j++) aesb_pseudo_round(&text[AES_BLOCK_SIZE * j], &text[AES_BLOCK_SIZE * j], expandedKey); - memcpy(&long_state[i * INIT_SIZE_BYTE], text, INIT_SIZE_BYTE); + memcpy(&long_state[i * INIT_SIZE_BYTE], text, INIT_SIZE_BYTE); } U64(a)[0] = U64(&state.k[0])[0] ^ U64(&state.k[32])[0]; |