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 | 3c0769d47805d2f0c0550c85a709b6a4ce817fa9 (patch) | |
tree | 0f85979ad37b845b64ffe8bd70f633553d4ce899 | |
parent | c76b1c95a71e14e890963c43a7e861a228bdb641 (diff) | |
download | cpython-3c0769d47805d2f0c0550c85a709b6a4ce817fa9.zip cpython-3c0769d47805d2f0c0550c85a709b6a4ce817fa9.tar.gz cpython-3c0769d47805d2f0c0550c85a709b6a4ce817fa9.tar.bz2 |
fix spacing
-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 6a2a9af..d5dde6a 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; |