diff options
| author | das <das> | 2003-05-19 05:42:35 (GMT) | 
|---|---|---|
| committer | das <das> | 2003-05-19 05:42:35 (GMT) | 
| commit | 58381305a41e2eae3c374274a299cbc08ae16d31 (patch) | |
| tree | 527b8bc2557c6dbe5a2cef1293c36f2948abb6ca /unix/tclUnixTime.c | |
| parent | ea406813f628dffc500c8c60e7725373e7153d90 (diff) | |
| download | tcl-58381305a41e2eae3c374274a299cbc08ae16d31.zip tcl-58381305a41e2eae3c374274a299cbc08ae16d31.tar.gz tcl-58381305a41e2eae3c374274a299cbc08ae16d31.tar.bz2 | |
	* unix/tclUnixTime.c: fixed typo.
Diffstat (limited to 'unix/tclUnixTime.c')
| -rw-r--r-- | unix/tclUnixTime.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c index 77af9b1..4ee9df9 100644 --- a/unix/tclUnixTime.c +++ b/unix/tclUnixTime.c @@ -9,7 +9,7 @@   * See the file "license.terms" for information on usage and redistribution   * of this file, and for a DISCLAIMER OF ALL WARRANTIES.   * - * RCS: @(#) $Id: tclUnixTime.c,v 1.16 2003/05/18 19:48:27 kennykb Exp $ + * RCS: @(#) $Id: tclUnixTime.c,v 1.17 2003/05/19 05:42:36 das Exp $   */  #include "tclInt.h" @@ -343,7 +343,7 @@ TclpStrftime(s, maxsize, format, t, useGMT)  	    Tcl_DStringInit ( &utf8Buffer );  	    Tcl_ExternalToUtfDString( NULL, s, status, &utf8Buffer );  	    strcpy( s, Tcl_DStringValue( &utf8Buffer ) ); -	    Tcl_DStringFree( &utf8buffer ); +	    Tcl_DStringFree( &utf8Buffer );  	}  	return status;      } | 
