diff options
author | Bill Meier <wmeier@newsguy.com> | 2012-09-20 20:07:21 +0000 |
---|---|---|
committer | Bill Meier <wmeier@newsguy.com> | 2012-09-20 20:07:21 +0000 |
commit | 60f3fcbb0c0f100f91729e0e3469c78de439fb3c (patch) | |
tree | 052f3b2b3a7b65f0a1798802ac45bc210d828c65 /config.h.win32 | |
parent | fad5d18b8b9cca5afe5cfefca3232a136d525fab (diff) | |
download | wireshark-60f3fcbb0c0f100f91729e0e3469c78de439fb3c.tar.gz wireshark-60f3fcbb0c0f100f91729e0e3469c78de439fb3c.tar.bz2 wireshark-60f3fcbb0c0f100f91729e0e3469c78de439fb3c.zip |
Fix a typo in SVN #44995 which caused building Wireshark with VS 2012 to fail.
svn path=/trunk/; revision=45029
Diffstat (limited to 'config.h.win32')
-rw-r--r-- | config.h.win32 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.h.win32 b/config.h.win32 index 726a0791b5..a9aebf88f1 100644 --- a/config.h.win32 +++ b/config.h.win32 @@ -236,9 +236,9 @@ #define WIN32 1 #endif -/* Visual C 9 (2008) & Visual C 10 (2010) need these prototypes */ -/* XXX: I'm guessing that this also applies to Visual C 11 (2012); TBD */ -#if _MSC_VER == 1500 || _MSC_VER == 1600 || MSC_VER == 1700 +/* Visual C 9 (2008), Visual C 10 (2010) and Visual C 11 (2012) need these prototypes */ +/* XXX: Can we use MSC_VER >= 1500 ?? +#if _MSC_VER == 1500 || _MSC_VER == 1600 || _MSC_VER == 1700 #define NTDDI_VERSION NTDDI_WIN2K #define _WIN32_WINNT _WIN32_WINNT_WIN2K #endif |