summaryrefslogtreecommitdiffstats
path: root/generic/tclStringObj.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2009-02-11 15:28:41 (GMT)
committerdgp <dgp@users.sourceforge.net>2009-02-11 15:28:41 (GMT)
commit93480ff215923ba215001b05e93b3316e4742487 (patch)
tree31098b1bfe3bdb60aec45fe69f6aea57ba273956 /generic/tclStringObj.c
parentbfcd65034eb86288bb554aef03df7c98101c3089 (diff)
downloadtcl-93480ff215923ba215001b05e93b3316e4742487.zip
tcl-93480ff215923ba215001b05e93b3316e4742487.tar.gz
tcl-93480ff215923ba215001b05e93b3316e4742487.tar.bz2
* generic/tclStringObj.c: Changed type of the 'allocated' field
of the String struct from size_t to int since only int values are ever stored in it.
Diffstat (limited to 'generic/tclStringObj.c')
-rw-r--r--generic/tclStringObj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclStringObj.c b/generic/tclStringObj.c
index b2dd292..3fa8528 100644
--- a/generic/tclStringObj.c
+++ b/generic/tclStringObj.c
@@ -33,7 +33,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclStringObj.c,v 1.95 2009/02/10 23:09:05 nijtmans Exp $ */
+ * RCS: @(#) $Id: tclStringObj.c,v 1.96 2009/02/11 15:28:56 dgp Exp $ */
#include "tclInt.h"
#include "tommath.h"
@@ -94,7 +94,7 @@ typedef struct String {
* means that there is a valid Unicode rep, or
* that the number of UTF bytes == the number
* of chars. */
- size_t allocated; /* The amount of space actually allocated for
+ int allocated; /* The amount of space actually allocated for
* the UTF string (minus 1 byte for the
* termination char). */
size_t uallocated; /* The amount of space actually allocated for