summaryrefslogtreecommitdiff
path: root/crypto/aegis128l.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-05-30 11:50:05 +0100
committerHerbert Xu <herbert@gondor.apana.org.au>2018-06-22 23:03:06 +0800
commit536fc65f48aabba6c4ef950e10765a835ba1a5d0 (patch)
tree8e29ede11a550bdac4f3f46c4c10c605e7fe04ce /crypto/aegis128l.c
parenta248ecca7a6077f18322d81ce63a96754634d46d (diff)
downloadlinux-crypto-536fc65f48aabba6c4ef950e10765a835ba1a5d0.tar.gz
linux-crypto-536fc65f48aabba6c4ef950e10765a835ba1a5d0.zip
crypto: aegis - fix indentation of a statement
Trival fix to correct the indentation of a single statement Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/aegis128l.c')
-rw-r--r--crypto/aegis128l.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/aegis128l.c b/crypto/aegis128l.c
index 0cc1a752..64dc2654 100644
--- a/crypto/aegis128l.c
+++ b/crypto/aegis128l.c
@@ -121,7 +121,7 @@ static void crypto_aegis128l_ad(struct aegis_state *state,
(const union aegis_chunk *)src;
while (size >= AEGIS128L_CHUNK_SIZE) {
- crypto_aegis128l_update_a(state, src_chunk);
+ crypto_aegis128l_update_a(state, src_chunk);
size -= AEGIS128L_CHUNK_SIZE;
src_chunk += 1;