From 6cbe8219a3ceac4cfb4a3a4d26656916c09b051f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kin=C4=8Dl?= Date: Thu, 23 May 2019 16:13:34 +0200 Subject: [PATCH] Moved opening brace to the same line. --- wolfcrypt/src/dh.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wolfcrypt/src/dh.c b/wolfcrypt/src/dh.c index 1387f3b1d..075418975 100644 --- a/wolfcrypt/src/dh.c +++ b/wolfcrypt/src/dh.c @@ -2150,8 +2150,7 @@ int wc_DhGenerateParams(WC_RNG *rng, int modSz, DhKey *dh) != MP_OKAY) { ret = MP_INIT_E; } - else - { + else { /* tmp and tmp2 are initialized */ tmp_valid = 1; }