summaryrefslogtreecommitdiffstats
path: root/macosx/tclMacOSXNotify.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2009-07-22 12:00:42 (GMT)
committernijtmans <nijtmans>2009-07-22 12:00:42 (GMT)
commit81df06d268ae2482f79f7472d47e00c229831e03 (patch)
tree399c99f289130f071fbc6c96078f71c916910a90 /macosx/tclMacOSXNotify.c
parentf77adce3fe5bf7965131d22d9c6e525d3e7e3315 (diff)
downloadtcl-81df06d268ae2482f79f7472d47e00c229831e03.zip
tcl-81df06d268ae2482f79f7472d47e00c229831e03.tar.gz
tcl-81df06d268ae2482f79f7472d47e00c229831e03.tar.bz2
* macosx/tclMacOSXFCmd.c: CONST -> const
* generic/tclGetDate.y: * generic/tclDate.c: * generic/tclLiteral.c: (char *) cast in ckfree call
Diffstat (limited to 'macosx/tclMacOSXNotify.c')
-rw-r--r--macosx/tclMacOSXNotify.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/tclMacOSXNotify.c b/macosx/tclMacOSXNotify.c
index a1bc7c1..ee4335a 100644
--- a/macosx/tclMacOSXNotify.c
+++ b/macosx/tclMacOSXNotify.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclMacOSXNotify.c,v 1.26 2009/04/14 00:55:31 das Exp $
+ * RCS: @(#) $Id: tclMacOSXNotify.c,v 1.27 2009/07/22 12:00:42 nijtmans Exp $
*/
#include "tclInt.h"
@@ -1655,7 +1655,7 @@ TclUnixWaitForFile(
if (FD_ISSET(fd, &writableMask)) {
SET_BITS(result, TCL_WRITABLE);
}
- if (FD_ISSET(fd, &exceptionalMask)) {
+ if (FD_ISSET(fd, &exceptionalMask)) {
SET_BITS(result, TCL_EXCEPTION);
}
result &= mask;
@@ -1973,7 +1973,7 @@ AtForkChild(void)
void
TclMacOSXNotifierAddRunLoopMode(
- CONST void *runLoopMode)
+ const void *runLoopMode)
{
Tcl_Panic("TclMacOSXNotifierAddRunLoopMode: "
"Tcl not built with CoreFoundation support");