summaryrefslogtreecommitdiffstats
path: root/src/native
diff options
context:
space:
mode:
Diffstat (limited to 'src/native')
-rwxr-xr-xsrc/native/windows/WindowsDynamicLinkerImpl_JNI.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/native/windows/WindowsDynamicLinkerImpl_JNI.c b/src/native/windows/WindowsDynamicLinkerImpl_JNI.c
index 2b99098..db20b15 100755
--- a/src/native/windows/WindowsDynamicLinkerImpl_JNI.c
+++ b/src/native/windows/WindowsDynamicLinkerImpl_JNI.c
@@ -5,8 +5,8 @@
#include <assert.h>
#include <windows.h>
- /* This typedef is only needed for VC6 */
- #if _MSC_VER <= 1200
+ /* This typedef is apparently needed for compilers before VC8 */
+ #if _MSC_VER < 1400
typedef int intptr_t;
#endif