From dfbced74999c85b4be88db96a5e4407218ac12a6 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 28 Feb 2007 18:57:03 +0000 Subject: r11998@catbus: nickm | 2007-02-28 13:56:55 -0500 Correct an MSC_VER check. svn:r9685 --- src/common/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/compat.h b/src/common/compat.h index b7eaf75ea3..c516f8d651 100644 --- a/src/common/compat.h +++ b/src/common/compat.h @@ -13,7 +13,7 @@ #define WIN32_WINNT 0x400 #define _WIN32_WINNT 0x400 #define WIN32_LEAN_AND_MEAN -#if defined(_MSC_VER) && (_MSC_VER <= 1300) +#if defined(_MSC_VER) && (_MSC_VER < 1300) #include #else #include -- cgit v1.2.3-54-g00ecf