From: Pauli Date: Tue, 28 Nov 2017 22:48:19 +0000 (+1000) Subject: A missing semicolon prevents compilation with ENGINE_REF_COUNT_DEBUG enabled. X-Git-Tag: OpenSSL_1_1_1-pre1~400 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=92b1b9a8871530f26ef7df972111297ffa721be2;p=oweals%2Fopenssl.git A missing semicolon prevents compilation with ENGINE_REF_COUNT_DEBUG enabled. Reviewed-by: Rich Salz Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/4816) --- 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);