summaryrefslogtreecommitdiffstats
path: root/generic/tclStringObj.c
diff options
context:
space:
mode:
authordas <das>2009-07-15 22:27:13 (GMT)
committerdas <das>2009-07-15 22:27:13 (GMT)
commit4ddce8d6445b7a711133a230e5c070aeb22f95de (patch)
tree87173f685265cda54ee8ed18bc38b9a76a465d37 /generic/tclStringObj.c
parent06eaea4df70451d16154d922e94eaba288cc8839 (diff)
downloadtcl-4ddce8d6445b7a711133a230e5c070aeb22f95de.zip
tcl-4ddce8d6445b7a711133a230e5c070aeb22f95de.tar.gz
tcl-4ddce8d6445b7a711133a230e5c070aeb22f95de.tar.bz2
fix 64bit int <-> ptr cast warnings
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 7c0ccaf..093eca3 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.70.2.15 2009/07/01 15:29:48 patthoyts Exp $ */
+ * RCS: @(#) $Id: tclStringObj.c,v 1.70.2.16 2009/07/15 22:27:14 das Exp $ */
#include "tclInt.h"
#include "tommath.h"
@@ -1357,7 +1357,7 @@ AppendUnicodeToUnicodeRep(
int appendNumChars) /* Number of chars of "unicode" to append. */
{
String *stringPtr;
- size_t numChars;
+ int numChars;
if (appendNumChars < 0) {
appendNumChars = UnicodeLength(unicode);