diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-04-30 13:42:28 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-04-30 13:42:28 -0700 |
commit | 6f44c857437048459b443c0a2d8987295e8d1a01 (patch) | |
tree | b3b59d221cb52a1d251bb0d7a414de0e6376ebd2 /cryptography | |
parent | 5aa7737aa6788046c1db63e114db07123e90b2f4 (diff) | |
download | cryptography-6f44c857437048459b443c0a2d8987295e8d1a01.tar.gz cryptography-6f44c857437048459b443c0a2d8987295e8d1a01.tar.bz2 cryptography-6f44c857437048459b443c0a2d8987295e8d1a01.zip |
Fix two more violations
Diffstat (limited to 'cryptography')
-rw-r--r-- | cryptography/hazmat/bindings/openssl/bio.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/openssl/bio.py b/cryptography/hazmat/bindings/openssl/bio.py index 6232eca6..6c36b7c1 100644 --- a/cryptography/hazmat/bindings/openssl/bio.py +++ b/cryptography/hazmat/bindings/openssl/bio.py @@ -125,8 +125,8 @@ long BIO_callback_ctrl( ); char* BIO_ptr_ctrl(BIO *, int, long); long BIO_int_ctrl(BIO *, int, long, int); -size_t BIO_ctrl_pending(BIO *b); -size_t BIO_ctrl_wpending(BIO *b); +size_t BIO_ctrl_pending(BIO *); +size_t BIO_ctrl_wpending(BIO *); int BIO_read(BIO *, void *, int); int BIO_gets(BIO *, char *, int); int BIO_write(BIO *, const void *, int); |