diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-09-27 09:13:40 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-09-27 09:13:40 (GMT) |
commit | 96d2654fc7b1e76773371ccb914457afb3767683 (patch) | |
tree | 58cc2987d5131a57727f727e9940bdd58fce5caf /Modules | |
parent | 02dc7d1272593ccbcad16af89696cc0d9b76e99d (diff) | |
download | cpython-96d2654fc7b1e76773371ccb914457afb3767683.zip cpython-96d2654fc7b1e76773371ccb914457afb3767683.tar.gz cpython-96d2654fc7b1e76773371ccb914457afb3767683.tar.bz2 |
fix spacing
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_hashopenssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c index df53e96..01f4577 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; |