summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2017-11-29 08:48:19 +1000
committerPauli <paul.dale@oracle.com>2017-11-29 08:55:44 +1000
commit92b1b9a8871530f26ef7df972111297ffa721be2 (patch)
tree055c3db846c07d6033a67b3d9c2964fb6c9c1e76 /crypto
parent3f6a831254abc7de759e79793535bd289cafd44a (diff)
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')
-rw-r--r--crypto/engine/eng_lib.c2
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);