summaryrefslogtreecommitdiffstats
path: root/apps/engine.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-02-15 15:29:59 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-02-15 15:29:59 +0000
commit0ed6b52687478299f4bc0f372e6ea4d6fbdfce49 (patch)
treee7b374e358fc9e7bd1eb92e49d65a636547b80a2 /apps/engine.c
parenta63bf2c53c74723d06da144fe15736c0a709ee43 (diff)
Stop warning about use of *printf() without a format.
Diffstat (limited to 'apps/engine.c')
-rw-r--r--apps/engine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/engine.c b/apps/engine.c
index baee8243db..78e9f2b67b 100644
--- a/apps/engine.c
+++ b/apps/engine.c
@@ -247,7 +247,7 @@ static int util_verbose(ENGINE *e, int verbose, BIO *bio_out, const char *indent
/* Now decide on the output */
if(xpos == 0)
/* Do an indent */
- xpos = BIO_printf(bio_out, indent);
+ xpos = BIO_puts(bio_out, indent);
else
/* Otherwise prepend a ", " */
xpos += BIO_printf(bio_out, ", ");
@@ -258,7 +258,7 @@ static int util_verbose(ENGINE *e, int verbose, BIO *bio_out, const char *indent
(xpos + (int)strlen(name) > line_wrap))
{
BIO_printf(bio_out, "\n");
- xpos = BIO_printf(bio_out, indent);
+ xpos = BIO_puts(bio_out, indent);
}
xpos += BIO_printf(bio_out, "%s", name);
}