summaryrefslogtreecommitdiffstats
path: root/generic/tclResult.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2001-09-26 14:23:09 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2001-09-26 14:23:09 (GMT)
commit557e227172be4b39d2db93e50b3aa9df96fcbb97 (patch)
tree64709a83dd977415b9b1ad593207d16f4b45db3c /generic/tclResult.c
parent368d2d623f802dda05805c7e8c1d147a74018998 (diff)
downloadtcl-557e227172be4b39d2db93e50b3aa9df96fcbb97.zip
tcl-557e227172be4b39d2db93e50b3aa9df96fcbb97.tar.gz
tcl-557e227172be4b39d2db93e50b3aa9df96fcbb97.tar.bz2
Now builds on Solaris8/SPARC with both SunPro CC *and* GCC.
Diffstat (limited to 'generic/tclResult.c')
-rw-r--r--generic/tclResult.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/generic/tclResult.c b/generic/tclResult.c
index 663f47f..463b81f 100644
--- a/generic/tclResult.c
+++ b/generic/tclResult.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclResult.c,v 1.4 1999/10/21 02:16:22 hobbs Exp $
+ * RCS: @(#) $Id: tclResult.c,v 1.4.16.1 2001/09/26 14:23:10 dkf Exp $
*/
#include "tclInt.h"
@@ -19,7 +19,7 @@
static void ResetObjResult _ANSI_ARGS_((Interp *iPtr));
static void SetupAppendBuffer _ANSI_ARGS_((Interp *iPtr,
- int newSpace));
+ Tcl_Length newSpace));
/*
@@ -460,7 +460,8 @@ Tcl_AppendResultVA (interp, argList)
char *string, *static_list[STATIC_LIST_SIZE];
char **args = static_list;
int nargs_space = STATIC_LIST_SIZE;
- int nargs, newSpace, i;
+ int nargs, i;
+ Tcl_Length newSpace;
/*
* If the string result is empty, move the object result to the
@@ -664,7 +665,7 @@ Tcl_AppendElement(interp, string)
static void
SetupAppendBuffer(iPtr, newSpace)
Interp *iPtr; /* Interpreter whose result is being set up. */
- int newSpace; /* Make sure that at least this many bytes
+ Tcl_Length newSpace; /* Make sure that at least this many bytes
* of new information may be added. */
{
int totalSpace;