From b7b32a06778afaad09d3c59da37fecf1875d5b3e Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Sat, 24 Feb 2018 15:42:25 +0100 Subject: [PATCH] Cosmetic: put else and braces in the same line --- src/monocypher.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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]); } -- 2.47.3