diff options
author | nijtmans <nijtmans> | 2009-07-22 12:00:42 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2009-07-22 12:00:42 (GMT) |
commit | 223b313a0cf97cf513b18df35a99f4c58cee7b39 (patch) | |
tree | 399c99f289130f071fbc6c96078f71c916910a90 /macosx | |
parent | 598551ed4987a7a3cd237cd8b66cf5becb3e8b1f (diff) | |
download | tcl-223b313a0cf97cf513b18df35a99f4c58cee7b39.zip tcl-223b313a0cf97cf513b18df35a99f4c58cee7b39.tar.gz tcl-223b313a0cf97cf513b18df35a99f4c58cee7b39.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')
-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"); |