diff options
author | nijtmans <nijtmans> | 2010-05-11 14:47:12 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-05-11 14:47:12 (GMT) |
commit | de40abc6da2cdfe574bf281fbaf84fa03a7f619d (patch) | |
tree | b910b870b64085996a0a4be0be3eb7bcd33ad0c4 /win/tclWinNotify.c | |
parent | 4d121f611d686f514965d65ee8fc91fb882824e3 (diff) | |
download | tcl-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/tclWinNotify.c')
-rw-r--r-- | win/tclWinNotify.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinNotify.c b/win/tclWinNotify.c index 352379d..0245df3 100644 --- a/win/tclWinNotify.c +++ b/win/tclWinNotify.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinNotify.c,v 1.27 2010/05/04 11:05:34 nijtmans Exp $ + * RCS: @(#) $Id: tclWinNotify.c,v 1.28 2010/05/11 14:47:12 nijtmans Exp $ */ #include "tclInt.h" @@ -122,7 +122,7 @@ Tcl_InitNotifier(void) tsdPtr->event = CreateEvent(NULL, TRUE /* manual */, FALSE /* !signaled */, NULL); - return (ClientData) tsdPtr; + return tsdPtr; } } @@ -363,7 +363,7 @@ Tcl_ServiceModeHook( * if one is needed. */ - Tcl_AlertNotifier((ClientData)tsdPtr); + Tcl_AlertNotifier(tsdPtr); } } } |