Merge pull request #688 from reaperhulk/fix-warning

SSL_session_reused should return a long
diff --git a/cryptography/hazmat/bindings/openssl/ssl.py b/cryptography/hazmat/bindings/openssl/ssl.py
index 2c3710c..25e4967 100644
--- a/cryptography/hazmat/bindings/openssl/ssl.py
+++ b/cryptography/hazmat/bindings/openssl/ssl.py
@@ -303,7 +303,7 @@
     SSL_CTX *,
     int (*)(const SSL *, int *, void *));
 
-int SSL_session_reused(SSL *);
+long SSL_session_reused(SSL *);
 """
 
 CUSTOMIZATIONS = """