aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl
diff options
context:
space:
mode:
authordumol <dumol@chevah.com>2018-05-22 15:19:02 +0300
committerAlex Gaynor <alex.gaynor@gmail.com>2018-05-22 08:19:02 -0400
commit0a22d486ec9175926aed29a5f4ea963843ebccfa (patch)
tree1ad64f88d28fbcbcb1a7ec627a0a4cea0e1f37e9 /src/_cffi_src/openssl
parent8ac485d881884764574c60a3c54c7f94308f222e (diff)
downloadcryptography-0a22d486ec9175926aed29a5f4ea963843ebccfa.tar.gz
cryptography-0a22d486ec9175926aed29a5f4ea963843ebccfa.tar.bz2
cryptography-0a22d486ec9175926aed29a5f4ea963843ebccfa.zip
Fixed build errors on HP-UX. (#4259)
* Fixed build errors on HP-UX. * PEP 8 style fix. * No return for void function. * PEP 8 style fix, take 2.
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r--src/_cffi_src/openssl/crypto.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_cffi_src/openssl/crypto.py b/src/_cffi_src/openssl/crypto.py
index dfff21bb..449fff5e 100644
--- a/src/_cffi_src/openssl/crypto.py
+++ b/src/_cffi_src/openssl/crypto.py
@@ -143,6 +143,6 @@ void *Cryptography_realloc_wrapper(void *ptr, size_t size, const char *path,
}
void Cryptography_free_wrapper(void *ptr, const char *path, int line) {
- return free(ptr);
+ free(ptr);
}
"""