diff options
author | wart <wart> | 1999-06-17 00:39:18 (GMT) |
---|---|---|
committer | wart <wart> | 1999-06-17 00:39:18 (GMT) |
commit | b7a7df05b3026d867afcd0efea1bb6d134c560de (patch) | |
tree | 5d89df4af9ed84c3d450804be5074157192dc12c /generic/tkConsole.c | |
parent | ac460cfd56977cb5f00dc6c0aee8c9dc46f38e42 (diff) | |
download | tk-b7a7df05b3026d867afcd0efea1bb6d134c560de.zip tk-b7a7df05b3026d867afcd0efea1bb6d134c560de.tar.gz tk-b7a7df05b3026d867afcd0efea1bb6d134c560de.tar.bz2 |
Updated aclocal.m4 to reflect recent changes in tcl.m4
Changed type of strncmp() parameter from int to size_t in tkConsole.c to
remove compiler warnings about bad types.
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; |