diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-05-30 13:50:05 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2018-06-22 18:03:06 +0300 |
commit | b25c1199acaea4fbc69944c0c14eb2300de9dec4 (patch) | |
tree | c962ef8205392b33cecee99a68011ac3a955fe90 | |
parent | ea23cb533ce419204af129380cfe1d287481aa14 (diff) | |
download | linux-b25c1199acaea4fbc69944c0c14eb2300de9dec4.tar.xz |
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>
-rw-r--r-- | crypto/aegis128l.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/aegis128l.c b/crypto/aegis128l.c index 0cc1a7525c85..64dc2654b863 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; |