diff options
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 9a8be8c..3496042 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.36 2007/06/29 03:16:26 das Exp $ + * RCS: @(#) $Id: tclGetDate.y,v 1.37 2007/08/06 17:25:50 kennykb Exp $ */ %{ @@ -85,7 +85,7 @@ typedef struct DateInfo { #define YYLEX_PARAM info #define YYMALLOC ckalloc -#define YYFREE ckfree +#define YYFREE(x) (ckfree((void*) (x))) #define yyDSTmode (((DateInfo *) info)->dateDSTmode) #define yyDayOrdinal (((DateInfo *) info)->dateDayOrdinal) |