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/build_openssl.py | 2 +- src/_cffi_src/openssl/crypto.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/_cffi_src') diff --git a/src/_cffi_src/build_openssl.py b/src/_cffi_src/build_openssl.py index 6b15fe4a..180cb779 100644 --- a/src/_cffi_src/build_openssl.py +++ b/src/_cffi_src/build_openssl.py @@ -46,7 +46,7 @@ def _extra_compile_args(platform): When we drop support for CRYPTOGRAPHY_OPENSSL_LESS_THAN_110 we can revisit this. """ - if platform != "win32": + if platform not in ["win32", "hp-ux11"]: return ["-Wconversion", "-Wno-error=sign-conversion"] else: return [] 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