From 96d2654fc7b1e76773371ccb914457afb3767683 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 27 Sep 2015 02:13:40 -0700 Subject: [PATCH] fix spacing --- Modules/_hashopenssl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c index df53e96520..01f4577808 100644 --- a/Modules/_hashopenssl.c +++ b/Modules/_hashopenssl.c @@ -532,8 +532,8 @@ PKCS5_PBKDF2_HMAC_fast(const char *pass, int passlen, HMAC_CTX_cleanup(&hctx_tpl); return 0; } - while(tkeylen) { - if(tkeylen > mdlen) + while (tkeylen) { + if (tkeylen > mdlen) cplen = mdlen; else cplen = tkeylen; -- 2.50.1