diff options
Diffstat (limited to 'generic/tkConsole.c')
-rw-r--r-- | generic/tkConsole.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkConsole.c b/generic/tkConsole.c index 5c43a12..adae241 100644 --- a/generic/tkConsole.c +++ b/generic/tkConsole.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkConsole.c,v 1.7 1999/05/25 01:31:05 stanton Exp $ + * RCS: @(#) $Id: tkConsole.c,v 1.8 1999/06/17 00:39:18 wart Exp $ */ #include "tk.h" @@ -459,7 +459,7 @@ ConsoleCmd(clientData, interp, argc, argv) { ConsoleInfo *info = (ConsoleInfo *) clientData; char c; - int length; + size_t length; int result; Tcl_Interp *consoleInterp; Tcl_DString dString; @@ -536,7 +536,7 @@ InterpreterCmd(clientData, interp, argc, argv) { ConsoleInfo *info = (ConsoleInfo *) clientData; char c; - int length; + size_t length; int result; Tcl_Interp *otherInterp; |