summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorjan <jan>2011-04-20 00:01:54 (GMT)
committerjan <jan>2011-04-20 00:01:54 (GMT)
commitb99b0b6866dfddd102e496aa634c4b940ace19d7 (patch)
tree3311ff091a6d8a60128e5ab87c48ea95450f51bd /generic/tclInt.h
parenta6a5cd0c448ed7eab1edf7e9812853b9111593d5 (diff)
downloadtcl-b99b0b6866dfddd102e496aa634c4b940ace19d7.zip
tcl-b99b0b6866dfddd102e496aa634c4b940ace19d7.tar.gz
tcl-b99b0b6866dfddd102e496aa634c4b940ace19d7.tar.bz2
fix for [Bug 3288345]: Wrong Tcl_StatBuf used on MinGW. Follow-up: get it right for cygwin and WIN64 as well.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 607dc80..b080fef 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -1795,7 +1795,7 @@ typedef struct TclpTime_t_ *CONST TclpTime_t_CONST;
*----------------------------------------------------------------
*/
-typedef int (TclStatProc_) _ANSI_ARGS_((CONST char *path, struct stat *buf));
+typedef int (TclStatProc_) _ANSI_ARGS_((CONST char *path, Tcl_StatBuf *buf));
typedef int (TclAccessProc_) _ANSI_ARGS_((CONST char *path, int mode));
typedef Tcl_Channel (TclOpenFileChannelProc_) _ANSI_ARGS_((Tcl_Interp *interp,
CONST char *fileName, CONST char *modeString,