From cbe2964821bb063f61ed2544cfce196ec1c0d62b Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Thu, 7 Dec 2017 13:39:34 -0500 Subject: Consistent formatting for sizeof(foo) Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/4872) --- apps/dhparam.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/dhparam.c') diff --git a/apps/dhparam.c b/apps/dhparam.c index 7c7d684163..2a78ce28fc 100644 --- a/apps/dhparam.c +++ b/apps/dhparam.c @@ -319,9 +319,9 @@ int dhparam_main(int argc, char **argv) "\n" " if (dh == NULL)\n" " return NULL;\n"); - BIO_printf(out, " dhp_bn = BN_bin2bn(dhp_%d, sizeof (dhp_%d), NULL);\n", + BIO_printf(out, " dhp_bn = BN_bin2bn(dhp_%d, sizeof(dhp_%d), NULL);\n", bits, bits); - BIO_printf(out, " dhg_bn = BN_bin2bn(dhg_%d, sizeof (dhg_%d), NULL);\n", + BIO_printf(out, " dhg_bn = BN_bin2bn(dhg_%d, sizeof(dhg_%d), NULL);\n", bits, bits); BIO_printf(out, " if (dhp_bn == NULL || dhg_bn == NULL\n" " || !DH_set0_pqg(dh, dhp_bn, NULL, dhg_bn)) {\n" -- cgit v1.2.3