Win32 fixes:
define LLONG properly for VC++. stop compiler complaining about signed/unsigned mismatch in apps/engine.c
This commit is contained in:
parent
f9a4ad4fa6
commit
c2e45f6ddf
@ -237,8 +237,8 @@ static int util_verbose(ENGINE *e, int verbose, BIO *bio_out, const char *indent
|
|||||||
if(verbose == 1)
|
if(verbose == 1)
|
||||||
{
|
{
|
||||||
/* We're just listing names, comma-delimited */
|
/* We're just listing names, comma-delimited */
|
||||||
if((xpos > strlen(indent)) &&
|
if((xpos > (int)strlen(indent)) &&
|
||||||
(xpos + strlen(name) > line_wrap))
|
(xpos + (int)strlen(name) > line_wrap))
|
||||||
{
|
{
|
||||||
BIO_printf(bio_out, "\n");
|
BIO_printf(bio_out, "\n");
|
||||||
xpos = BIO_printf(bio_out, indent);
|
xpos = BIO_printf(bio_out, indent);
|
||||||
|
@ -109,7 +109,11 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if HAVE_LONG_LONG
|
#if HAVE_LONG_LONG
|
||||||
#define LLONG long long
|
# if defined(OPENSSL_SYS_WIN32) && !defined(__GNUC__)
|
||||||
|
# define LLONG _int64
|
||||||
|
# else
|
||||||
|
# define LLONG long long
|
||||||
|
# endif
|
||||||
#else
|
#else
|
||||||
#define LLONG long
|
#define LLONG long
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user