diff options
author | Pauli <paul.dale@oracle.com> | 2017-11-28 23:48:19 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2017-11-28 23:55:44 +0100 |
commit | 92b1b9a8871530f26ef7df972111297ffa721be2 (patch) | |
tree | 055c3db846c07d6033a67b3d9c2964fb6c9c1e76 /crypto/engine | |
parent | Fix chacha-armv4.pl with clang -fno-integrated-as. (diff) | |
download | openssl-92b1b9a8871530f26ef7df972111297ffa721be2.tar.xz openssl-92b1b9a8871530f26ef7df972111297ffa721be2.zip |
A missing semicolon prevents compilation with ENGINE_REF_COUNT_DEBUG enabled.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4816)
Diffstat (limited to 'crypto/engine')
-rw-r--r-- | crypto/engine/eng_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/engine/eng_lib.c b/crypto/engine/eng_lib.c index a500992a21..8f65584221 100644 --- a/crypto/engine/eng_lib.c +++ b/crypto/engine/eng_lib.c @@ -82,7 +82,7 @@ int engine_free_util(ENGINE *e, int not_locked) else i = --e->struct_ref; #endif - engine_ref_debug(e, 0, -1) + engine_ref_debug(e, 0, -1); if (i > 0) return 1; REF_ASSERT_ISNT(i < 0); |