summaryrefslogtreecommitdiffstats
path: root/crypto/bio/b_print.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2005-07-26 04:43:31 +0000
committerGeoff Thorpe <geoff@openssl.org>2005-07-26 04:43:31 +0000
commit209b12814f311f1a34ea7882243082e54fff9764 (patch)
tree8ab32ef09b69be57541134baad79a7cf4563ef60 /crypto/bio/b_print.c
parentf920c5b590e3317fa740ca62fd87dbcd60978a16 (diff)
Fix compilation when HAVE_LONG_LONG isn't defined.
Diffstat (limited to 'crypto/bio/b_print.c')
-rw-r--r--crypto/bio/b_print.c2
1 files changed, 1 insertions, 1 deletions
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