aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl/src
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-04-02 17:54:12 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-04-03 05:54:12 +0800
commit854e5fac6ebda05a218b661887ba0ed371d8c269 (patch)
tree15f495d2f388c94b1e41ee5b952eb9556d933f99 /src/_cffi_src/openssl/src
parentd827e9c0125c871f1fd4df44c3b666ac758a4c4b (diff)
downloadcryptography-854e5fac6ebda05a218b661887ba0ed371d8c269.tar.gz
cryptography-854e5fac6ebda05a218b661887ba0ed371d8c269.tar.bz2
cryptography-854e5fac6ebda05a218b661887ba0ed371d8c269.zip
Style nit in C code (#3486)
Diffstat (limited to 'src/_cffi_src/openssl/src')
-rw-r--r--src/_cffi_src/openssl/src/osrandom_engine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_cffi_src/openssl/src/osrandom_engine.c b/src/_cffi_src/openssl/src/osrandom_engine.c
index f1cfcb67..7300d784 100644
--- a/src/_cffi_src/openssl/src/osrandom_engine.c
+++ b/src/_cffi_src/openssl/src/osrandom_engine.c
@@ -554,7 +554,7 @@ int Cryptography_add_osrandom_engine(void) {
if (e == NULL) {
return 0;
}
- if(!ENGINE_set_id(e, Cryptography_osrandom_engine_id) ||
+ if (!ENGINE_set_id(e, Cryptography_osrandom_engine_id) ||
!ENGINE_set_name(e, Cryptography_osrandom_engine_name) ||
!ENGINE_set_RAND(e, &osrandom_rand) ||
!ENGINE_set_init_function(e, osrandom_init) ||