From: Geoff Thorpe Date: Tue, 26 Jul 2005 04:43:31 +0000 (+0000) Subject: Fix compilation when HAVE_LONG_LONG isn't defined. X-Git-Tag: OpenSSL_0_9_8k^2~1895 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=209b12814f311f1a34ea7882243082e54fff9764;p=oweals%2Fopenssl.git Fix compilation when HAVE_LONG_LONG isn't defined. --- diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c index 4857cfe0ce..b2d6f26f2e 100644 --- a/crypto/bio/b_print.c +++ b/crypto/bio/b_print.c @@ -115,7 +115,7 @@ #define LDOUBLE double #endif -#if HAVE_LONG_LONG +#ifdef HAVE_LONG_LONG # if defined(OPENSSL_SYS_WIN32) && !defined(__GNUC__) # define LLONG _int64 # else