Fix temporary debug output (so, time_t is 8 bytes on some Windows builds)

This commit is contained in:
Antoine Pitrou 2012-01-25 14:57:56 +01:00
parent 11cc480ed0
commit b744cef654
1 changed files with 1 additions and 1 deletions

View File

@ -908,7 +908,7 @@ write_compiled_module(PyCodeObject *co, char *cpathname, struct stat *srcstat)
/* 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 */
}