Loading apps/engine.c +2 −2 Original line number Diff line number Diff line Loading @@ -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); Loading crypto/bio/b_print.c +5 −1 Original line number Diff line number Diff line Loading @@ -109,7 +109,11 @@ #endif #if HAVE_LONG_LONG # if defined(OPENSSL_SYS_WIN32) && !defined(__GNUC__) # define LLONG _int64 # else # define LLONG long long # endif #else #define LLONG long #endif Loading Loading
apps/engine.c +2 −2 Original line number Diff line number Diff line Loading @@ -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); Loading
crypto/bio/b_print.c +5 −1 Original line number Diff line number Diff line Loading @@ -109,7 +109,11 @@ #endif #if HAVE_LONG_LONG # if defined(OPENSSL_SYS_WIN32) && !defined(__GNUC__) # define LLONG _int64 # else # define LLONG long long # endif #else #define LLONG long #endif Loading