aboutsummaryrefslogtreecommitdiff
path: root/gdb/values.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/values.c')
-rw-r--r--gdb/values.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/values.c b/gdb/values.c
index bfb0108..afd8b03 100644
--- a/gdb/values.c
+++ b/gdb/values.c
@@ -678,7 +678,7 @@ unpack_double (type, valaddr, invp)
#ifndef _MSC_VER
return (ULONGEST) unpack_long (type, valaddr);
#else
-#if (_MSC_VER > 800)
+#if (_MSC_VER > 900)
return (ULONGEST) unpack_long (type, valaddr);
#else
/* FIXME!!! msvc22 doesn't support unsigned __int64 -> double */