From: Benjamin Peterson Date: Sun, 27 Sep 2015 09:13:40 +0000 (-0700) Subject: fix spacing X-Git-Tag: v3.5.1rc1~261^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c0769d47805d2f0c0550c85a709b6a4ce817fa9;p=python fix spacing --- diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c index 6a2a9afd22..d5dde6a8eb 100644 --- a/Modules/_hashopenssl.c +++ b/Modules/_hashopenssl.c @@ -508,8 +508,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;