From 3ae70939baf60524135f7e3c47e93ad2a55e611b Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 3 Apr 2003 23:39:48 +0000 Subject: Correct a lot of printing calls. Remove extra arguments... --- apps/pkcs12.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'apps/pkcs12.c') diff --git a/apps/pkcs12.c b/apps/pkcs12.c index a00b438f96..385011b457 100644 --- a/apps/pkcs12.c +++ b/apps/pkcs12.c @@ -814,8 +814,9 @@ int alg_print (BIO *x, X509_ALGOR *alg) unsigned char *p; p = alg->parameter->value.sequence->data; pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length); - BIO_printf (bio_err, "%s, Iteration %d\n", - OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)), ASN1_INTEGER_get(pbe->iter)); + BIO_printf (bio_err, "%s, Iteration %ld\n", + OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)), + ASN1_INTEGER_get(pbe->iter)); PBEPARAM_free (pbe); return 0; } -- cgit v1.2.3