summaryrefslogtreecommitdiffstats
path: root/win/tclWinTime.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-05-11 14:47:12 (GMT)
committernijtmans <nijtmans>2010-05-11 14:47:12 (GMT)
commitde40abc6da2cdfe574bf281fbaf84fa03a7f619d (patch)
treeb910b870b64085996a0a4be0be3eb7bcd33ad0c4 /win/tclWinTime.c
parent4d121f611d686f514965d65ee8fc91fb882824e3 (diff)
downloadtcl-de40abc6da2cdfe574bf281fbaf84fa03a7f619d.zip
tcl-de40abc6da2cdfe574bf281fbaf84fa03a7f619d.tar.gz
tcl-de40abc6da2cdfe574bf281fbaf84fa03a7f619d.tar.bz2
Unnecessary type casts, See Tcl [Patch #2997087]
Don't duplicate CYGWIN timezone #define from tclPort.h in tclWinPort.h
Diffstat (limited to 'win/tclWinTime.c')
-rw-r--r--win/tclWinTime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinTime.c b/win/tclWinTime.c
index 9b30247..cf340c7 100644
--- a/win/tclWinTime.c
+++ b/win/tclWinTime.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinTime.c,v 1.36 2010/01/10 22:58:39 nijtmans Exp $
+ * RCS: @(#) $Id: tclWinTime.c,v 1.37 2010/05/11 14:47:12 nijtmans Exp $
*/
#include "tclInt.h"
@@ -416,7 +416,7 @@ NativeGetTime(
WaitForSingleObject(timeInfo.readyEvent, INFINITE);
CloseHandle(timeInfo.readyEvent);
- Tcl_CreateExitHandler(StopCalibration, (ClientData) NULL);
+ Tcl_CreateExitHandler(StopCalibration, NULL);
}
timeInfo.initialized = TRUE;
}