summaryrefslogtreecommitdiffstats
path: root/apps/apps.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2018-07-25 11:13:58 +0200
committerAndy Polyakov <appro@openssl.org>2018-07-26 13:48:34 +0200
commit06deb93286ac5f125fc81ddc9260b9de2311c7f3 (patch)
treed8f3651efcc65ce4d8bf1b03d93d801e4e6a166a /apps/apps.c
parentb9e54e98066c1ff8adab5d68b6c114b14d2f74e5 (diff)
apps/apps.c: harmonize print_bignum_var output with coding style.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps/apps.c')
-rw-r--r--apps/apps.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/apps.c b/apps/apps.c
index 2740275fe5..4090e605e5 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -1188,16 +1188,15 @@ void print_bignum_var(BIO *out, const BIGNUM *in, const char *var,
{
BIO_printf(out, " static unsigned char %s_%d[] = {", var, len);
if (BN_is_zero(in)) {
- BIO_printf(out, "\n\t0x00");
+ BIO_printf(out, "\n 0x00");
} else {
int i, l;
l = BN_bn2bin(in, buffer);
for (i = 0; i < l; i++) {
- if ((i % 10) == 0)
- BIO_printf(out, "\n\t");
+ BIO_printf(out, (i % 10) == 0 ? "\n " : " ");
if (i < l - 1)
- BIO_printf(out, "0x%02X, ", buffer[i]);
+ BIO_printf(out, "0x%02X,", buffer[i]);
else
BIO_printf(out, "0x%02X", buffer[i]);
}