diff options
| author | Benjamin Peterson <benjamin@python.org> | 2015-09-27 02:13:40 -0700 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2015-09-27 02:13:40 -0700 |
| commit | 3c0769d47805d2f0c0550c85a709b6a4ce817fa9 (patch) | |
| tree | 0f85979ad37b845b64ffe8bd70f633553d4ce899 | |
| parent | c76b1c95a71e14e890963c43a7e861a228bdb641 (diff) | |
| download | cpython-git-3c0769d47805d2f0c0550c85a709b6a4ce817fa9.tar.gz | |
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 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; |
