summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2000-08-07 21:33:01 (GMT)
committerhobbs <hobbs@noemail.net>2000-08-07 21:33:01 (GMT)
commit997ea5279b0d42d28c8ebc73ec05158e7070e32d (patch)
tree37c778a04c7f18ea11abd40cea44b1702fa22b66 /generic
parentbfef0b4274992ceab37d94ce82a8283388d4a634 (diff)
downloadtcl-997ea5279b0d42d28c8ebc73ec05158e7070e32d.zip
tcl-997ea5279b0d42d28c8ebc73ec05158e7070e32d.tar.gz
tcl-997ea5279b0d42d28c8ebc73ec05158e7070e32d.tar.bz2
* generic/tclEnv.c: cast cleanup [Bug: 5624]
* win/tclWinFCmd.c: cast cleanup [Bug: 5627] FossilOrigin-Name: bd25ec302199049de37b4e32c7528bf46dfc34ae
Diffstat (limited to 'generic')
-rw-r--r--generic/tclEnv.c5
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;