From: Colin Ian King Date: Wed, 30 May 2018 10:50:05 +0000 (+0100) Subject: crypto: aegis - fix indentation of a statement X-Git-Tag: v4.19~266^2~120 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b25c1199acaea4fbc69944c0c14eb2300de9dec4;p=platform%2Fkernel%2Flinux-rpi3.git crypto: aegis - fix indentation of a statement Trival fix to correct the indentation of a single statement Signed-off-by: Colin Ian King Signed-off-by: Herbert Xu --- diff --git a/crypto/aegis128l.c b/crypto/aegis128l.c index 0cc1a75..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;