Skip to content

Commit

Permalink
fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
zeebo committed Jul 27, 2018
1 parent 3c881b5 commit 5da5178
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shim.c
Original file line number Diff line number Diff line change
Expand Up @@ -326,13 +326,13 @@ int X_shim_init() {
SSL_library_init();
OpenSSL_add_all_algorithms();
//
// Set up OPENSSL thread safety callbacks.
// Set up OPENSSL thread safety callbacks.
rc = go_init_locks();
if (rc != 0) {
return rc;
}
CRYPTO_set_locking_callback(go_thread_locking_callback);
CRYPTO_set_id_callback(go_thread_id_callback)
CRYPTO_set_id_callback(go_thread_id_callback);

rc = x_bio_init_methods();
if (rc != 0) {
Expand Down

0 comments on commit 5da5178

Please sign in to comment.