From: Loup Vaillant Date: Sat, 24 Feb 2018 14:42:25 +0000 (+0100) Subject: Cosmetic: put else and braces in the same line X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=b7b32a06778afaad09d3c59da37fecf1875d5b3e;p=Monocypher.git Cosmetic: put else and braces in the same line --- diff --git a/src/monocypher.c b/src/monocypher.c index 711dd5d..5fee4de 100644 --- a/src/monocypher.c +++ b/src/monocypher.c @@ -239,8 +239,7 @@ void crypto_chacha20_encrypt(crypto_chacha_ctx *ctx, store32_le(cipher_text + j * 4, ctx->pool[j] ^ plain); plain_text += 4; } - } - else { + } else { FOR (j, 0, 16) { store32_le(cipher_text + j * 4, ctx->pool[j]); }