diff options
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index e14efa5..8ba1a3b 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -470,13 +470,13 @@ Tcl_CreateInterp(void) } #if defined(_WIN32) && !defined(_WIN64) - if (sizeof(time_t) != 4) { + if (sizeof(time_t) != 8) { /*NOTREACHED*/ - Tcl_Panic("sys/time.h is not compatible with MSVC"); + Tcl_Panic("sys/time.h is not compatible with VS2005+"); } - if (sizeof(Tcl_StatBuf) != 48) { + if (sizeof(Tcl_StatBuf) != 56) { /*NOTREACHED*/ - Tcl_Panic("sys/stat.h is not compatible with MSVC"); + Tcl_Panic("sys/stat.h is not compatible with VS2005+"); } #endif |