aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cryptography/bindings/openssl/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/bindings/openssl/api.py b/cryptography/bindings/openssl/api.py
index f4e5ab3d..58885ab7 100644
--- a/cryptography/bindings/openssl/api.py
+++ b/cryptography/bindings/openssl/api.py
@@ -39,7 +39,7 @@ class API(object):
self.ffi.cdef(module.FUNCTIONS)
includes.append(module.INCLUDES)
- # Be very loud about everything else
+ # Turn any warnings into an error
extra_compile_args = ["-Werror"]
if sys.platform == "darwin":
# All of OpenSSL is deprecated on OS X, so we ignore this.