Fix a compiler warning on Windows 64-bit in parsetok.c

Python parser doesn't support lines longer than INT_MAX bytes yet
diff --git a/Parser/parsetok.c b/Parser/parsetok.c
index b4957b8..629dee5 100644
--- a/Parser/parsetok.c
+++ b/Parser/parsetok.c
@@ -254,7 +254,8 @@
         }
 #endif
         if (a >= tok->line_start)
-            col_offset = a - tok->line_start;
+            col_offset = Py_SAFE_DOWNCAST(a - tok->line_start,
+                                          Py_intptr_t, int);
         else
             col_offset = -1;