aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Bakker <p.j.bakker@polarssl.org>2013-02-27 15:01:34 +0100
committerPaul Bakker <p.j.bakker@polarssl.org>2013-03-06 18:01:02 +0100
commit9f2018ea288686452c3a250b25403c8346eb1bc7 (patch)
tree344d30aa8b194017df86c14c14f7bebd4cc0caae
parent8ddb645ad33fec9aa76b31f16259754d77d329da (diff)
downloadmbedtls-9f2018ea288686452c3a250b25403c8346eb1bc7.zip
mbedtls-9f2018ea288686452c3a250b25403c8346eb1bc7.tar.gz
mbedtls-9f2018ea288686452c3a250b25403c8346eb1bc7.tar.bz2
Fixed typo in _MSC_VER (double underscore at the start)
-rw-r--r--include/polarssl/bignum.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/polarssl/bignum.h b/include/polarssl/bignum.h
index 06d6a2f..fac39be 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