diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-30 16:39:09 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-30 16:39:09 -0500 |
commit | 401164c1a2fe79ccac0ed1f97f11958cbe86632a (patch) | |
tree | 2f7d5223455d52788d7f6effafd1c9f94546a112 | |
parent | 461e83742aec0da4dc34ef0428f7b8e20f40b174 (diff) | |
parent | 506192b86d55ee0b7cc99c6ee995aed09178a3a6 (diff) | |
download | cryptography-401164c1a2fe79ccac0ed1f97f11958cbe86632a.tar.gz cryptography-401164c1a2fe79ccac0ed1f97f11958cbe86632a.tar.bz2 cryptography-401164c1a2fe79ccac0ed1f97f11958cbe86632a.zip |
Merge pull request #981 from alex/c-style-guide
Fixed C style guide violation
-rw-r--r-- | cryptography/hazmat/bindings/openssl/bio.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cryptography/hazmat/bindings/openssl/bio.py b/cryptography/hazmat/bindings/openssl/bio.py index 0c521b4d..cfe6034f 100644 --- a/cryptography/hazmat/bindings/openssl/bio.py +++ b/cryptography/hazmat/bindings/openssl/bio.py @@ -123,10 +123,10 @@ long BIO_callback_ctrl( int, void (*)(struct bio_st *, int, const char *, int, long, long) ); -char* BIO_ptr_ctrl(BIO *bp, int cmd, long larg); -long BIO_int_ctrl(BIO *bp, int cmd, long larg, int iarg); -size_t BIO_ctrl_pending(BIO *b); -size_t BIO_ctrl_wpending(BIO *b); +char *BIO_ptr_ctrl(BIO *, int, long); +long BIO_int_ctrl(BIO *, int, long, int); +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); |