fix code indentation issue

... related to engine_ref_debug macro.

Signed-off-by: Rich Salz <rsalz@akamai.com>
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
This commit is contained in:
FdaSilvaYY
2016-01-31 19:49:39 +01:00
committed by Rich Salz
parent b5c5a97141
commit 43d6702de9
5 changed files with 14 additions and 14 deletions

View File

@@ -71,8 +71,8 @@ ENGINE *ENGINE_new(void)
return NULL;
}
ret->struct_ref = 1;
engine_ref_debug(ret, 0, 1)
CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ENGINE, ret, &ret->ex_data);
engine_ref_debug(ret, 0, 1);
CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ENGINE, ret, &ret->ex_data);
return ret;
}