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 /generic/tclGetDate.y | |
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 'generic/tclGetDate.y')
-rw-r--r-- | generic/tclGetDate.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclGetDate.y b/generic/tclGetDate.y index 844632e..8014b73 100644 --- a/generic/tclGetDate.y +++ b/generic/tclGetDate.y @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclGetDate.y,v 1.41 2009/06/09 13:52:37 kennykb Exp $ + * RCS: @(#) $Id: tclGetDate.y,v 1.42 2009/07/22 12:00:42 nijtmans Exp $ */ %parse-param {DateInfo* info} @@ -969,7 +969,7 @@ TclClockOldscanObjCmd( ClientData clientData, /* Unused */ Tcl_Interp *interp, /* Tcl interpreter */ int objc, /* Count of paraneters */ - Tcl_Obj *CONST *objv) /* Parameters */ + Tcl_Obj *const *objv) /* Parameters */ { Tcl_Obj *result, *resultElement; int yr, mo, da; |