summaryrefslogtreecommitdiff
path: root/crypto/bio/b_print.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2001-04-29 16:30:59 +0000
committerDr. Stephen Henson <steve@openssl.org>2001-04-29 16:30:59 +0000
commitc2e45f6ddf9219735e85d9b658a94e42c37ec0a2 (patch)
tree2a7d5b13659f6a1943f6452e931e3f946eb12eb5 /crypto/bio/b_print.c
parentf9a4ad4fa6747e0b1c2d8660707ae43e04f1157b (diff)
downloadopenssl-new-c2e45f6ddf9219735e85d9b658a94e42c37ec0a2.tar.gz
Win32 fixes:
define LLONG properly for VC++. stop compiler complaining about signed/unsigned mismatch in apps/engine.c
Diffstat (limited to 'crypto/bio/b_print.c')
-rw-r--r--crypto/bio/b_print.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c
index 40070fbbde..3b0edcf3d0 100644
--- a/crypto/bio/b_print.c
+++ b/crypto/bio/b_print.c
@@ -109,7 +109,11 @@
#endif
#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
#define LLONG long
#endif