diff options
author | hobbs <hobbs> | 2000-08-07 21:33:02 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-08-07 21:33:02 (GMT) |
commit | 9e21fa252fd5fa9625a5d185502a6a52aabf94b2 (patch) | |
tree | 37c778a04c7f18ea11abd40cea44b1702fa22b66 /generic/tclEnv.c | |
parent | 32b27dad852777452f16c9b77996b5ff3d76337f (diff) | |
download | tcl-9e21fa252fd5fa9625a5d185502a6a52aabf94b2.zip tcl-9e21fa252fd5fa9625a5d185502a6a52aabf94b2.tar.gz tcl-9e21fa252fd5fa9625a5d185502a6a52aabf94b2.tar.bz2 |
* generic/tclEnv.c: cast cleanup [Bug: 5624]
* win/tclWinFCmd.c: cast cleanup [Bug: 5627]
Diffstat (limited to 'generic/tclEnv.c')
-rw-r--r-- | generic/tclEnv.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclEnv.c b/generic/tclEnv.c index 2fa6726..74ab36f 100644 --- a/generic/tclEnv.c +++ b/generic/tclEnv.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclEnv.c,v 1.7 2000/04/19 08:32:44 hobbs Exp $ + * RCS: @(#) $Id: tclEnv.c,v 1.7.2.1 2000/08/07 21:33:02 hobbs Exp $ */ #include "tclInt.h" @@ -356,7 +356,8 @@ TclUnsetEnv(name) CONST char *name; /* Name of variable to remove (UTF-8). */ { char *oldValue; - int length, index; + unsigned int length; + int index; #ifdef USE_PUTENV Tcl_DString envString; char *string; |