From 0a22d486ec9175926aed29a5f4ea963843ebccfa Mon Sep 17 00:00:00 2001 From: dumol Date: Tue, 22 May 2018 15:19:02 +0300 Subject: 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. --- src/_cffi_src/openssl/crypto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/_cffi_src/openssl/crypto.py') 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); } """ -- cgit v1.2.3