summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/engine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/engine.c b/apps/engine.c
index d33aa7ebb6..31221ed867 100644
--- a/apps/engine.c
+++ b/apps/engine.c
@@ -237,8 +237,8 @@ static int util_verbose(ENGINE *e, int verbose, BIO *bio_out, const char *indent
if(verbose == 1)
{
/* We're just listing names, comma-delimited */
- if((xpos > strlen(indent)) &&
- (xpos + strlen(name) > line_wrap))
+ if((xpos > (int)strlen(indent)) &&
+ (xpos + (int)strlen(name) > line_wrap))
{
BIO_printf(bio_out, "\n");
xpos = BIO_printf(bio_out, indent);