Fixed up a few issues
diff --git a/.gitignore b/.gitignore
index 46bc9c4..8eec5dc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,4 +11,3 @@
 *.egg-info/
 *.egg
 *.py[co]
-.idea/
\ No newline at end of file
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 17f8b05..a38534d 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -6,8 +6,6 @@
 
 .. note:: This version is not yet released and is under active development.
 
-* Added OPENSSL_config and OPENSSL_no_conf declarations
-  for the openssl binding.
 * Added :class:`~cryptography.hazmat.primitives.kdf.hkdf.HKDFExpand`.
 * Added :class:`~cryptography.hazmat.primitives.ciphers.modes.CFB8` support
   for :class:`~cryptography.hazmat.primitives.ciphers.algorithms.AES` and
diff --git a/cryptography/hazmat/bindings/openssl/conf.py b/cryptography/hazmat/bindings/openssl/conf.py
index e495771..001a070 100644
--- a/cryptography/hazmat/bindings/openssl/conf.py
+++ b/cryptography/hazmat/bindings/openssl/conf.py
@@ -22,7 +22,7 @@
 """
 
 FUNCTIONS = """
-void OPENSSL_config(const char*);
+void OPENSSL_config(const char *);
 void OPENSSL_no_config(void);
 """