From 9f2018ea288686452c3a250b25403c8346eb1bc7 Mon Sep 17 00:00:00 2001 From: Paul Bakker Date: Wed, 27 Feb 2013 15:01:34 +0100 Subject: [PATCH] Fixed typo in _MSC_VER (double underscore at the start) --- include/polarssl/bignum.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/polarssl/bignum.h b/include/polarssl/bignum.h index 06d6a2fee7..fac39be0bb 100644 --- a/include/polarssl/bignum.h +++ b/include/polarssl/bignum.h @@ -122,7 +122,7 @@ typedef uint16_t t_uint; typedef uint32_t t_udbl; #define POLARSSL_HAVE_UDBL #else - #if ( defined(__MSC_VER) && defined(_M_AMD64) ) + #if ( defined(_MSC_VER) && defined(_M_AMD64) ) typedef int64_t t_sint; typedef uint64_t t_uint; #else