diff options
Diffstat (limited to 'generic/tclThreadStorage.c')
| -rw-r--r-- | generic/tclThreadStorage.c | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/generic/tclThreadStorage.c b/generic/tclThreadStorage.c index ea2eeb1..f24e334 100644 --- a/generic/tclThreadStorage.c +++ b/generic/tclThreadStorage.c @@ -9,8 +9,6 @@   *   * See the file "license.terms" for information on usage and redistribution of   * this file, and for a DISCLAIMER OF ALL WARRANTIES. - * - * RCS: @(#) $Id: tclThreadStorage.c,v 1.21 2009/12/21 23:25:40 nijtmans Exp $   */  #include "tclInt.h" @@ -119,7 +117,7 @@ TSDTableDelete(  	     * and must now be deallocated or they will leak.  	     */ -	    ckfree((char *) tsdTablePtr->tablePtr[i]); +	    ckfree(tsdTablePtr->tablePtr[i]);  	}      } | 
