diff options
author | Kevin B Kenny <kennykb@acm.org> | 2010-11-29 02:27:11 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2010-11-29 02:27:11 (GMT) |
commit | d583b69d37716bbc26c8bd82d09a5503072a66c5 (patch) | |
tree | 60f384270f44d26f6d30a98e64133f57c1e816bd /generic/tclUtil.c | |
parent | a5a72404b019601daeadb7184189dd40ef6ac90c (diff) | |
download | tcl-d583b69d37716bbc26c8bd82d09a5503072a66c5.zip tcl-d583b69d37716bbc26c8bd82d09a5503072a66c5.tar.gz tcl-d583b69d37716bbc26c8bd82d09a5503072a66c5.tar.bz2 |
added missing casts that MSVC complained about and deleted unused variable
Diffstat (limited to 'generic/tclUtil.c')
-rw-r--r-- | generic/tclUtil.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclUtil.c b/generic/tclUtil.c index a04c29c..74cbff1 100644 --- a/generic/tclUtil.c +++ b/generic/tclUtil.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUtil.c,v 1.119 2010/11/28 23:20:11 kennykb Exp $ + * RCS: @(#) $Id: tclUtil.c,v 1.120 2010/11/29 02:27:12 kennykb Exp $ */ #include "tclInt.h" @@ -2236,7 +2236,6 @@ Tcl_PrintDouble( int signum; char* digits; char* end; - Tcl_UniChar ch; int *precisionPtr = Tcl_GetThreadData(&precisionKey, (int)sizeof(int)); |