diff options
| author | nijtmans <nijtmans> | 2009-07-22 12:00:42 (GMT) |
|---|---|---|
| committer | nijtmans <nijtmans> | 2009-07-22 12:00:42 (GMT) |
| commit | 81df06d268ae2482f79f7472d47e00c229831e03 (patch) | |
| tree | 399c99f289130f071fbc6c96078f71c916910a90 /macosx/tclMacOSXNotify.c | |
| parent | f77adce3fe5bf7965131d22d9c6e525d3e7e3315 (diff) | |
| download | tcl-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.c | 6 |
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"); |
