Fix temporary debug output (so, time_t is 8 bytes on some Windows builds)
diff --git a/Python/import.c b/Python/import.c
index 79cd708..f9f3cdb 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -908,7 +908,7 @@
/* Now write the true mtime */
fseek(fp, 4L, 0);
if (mtime >= LONG_MAX) {
- fprintf(stderr, "** mtime=%ld > %ld (%ld, %ld)\n", mtime, LONG_MAX, sizeof(time_t), sizeof(srcstat->st_mtime));
+ fprintf(stderr, "** sizes=(%ld, %ld), mtime=%I64d >= %ld\n", sizeof(time_t), sizeof(srcstat->st_mtime), mtime, LONG_MAX);
assert(0);
/* can't get here */
}