From: Benjamin Peterson Date: Sun, 27 Sep 2015 09:13:40 +0000 (-0700) Subject: fix spacing X-Git-Tag: v2.7.11rc1~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=96d2654fc7b1e76773371ccb914457afb3767683;p=python fix spacing --- 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;