summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixCompat.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2009-12-11 23:42:41 (GMT)
committernijtmans <nijtmans>2009-12-11 23:42:41 (GMT)
commitd56846dd9104d99b6b8ce56fb27ab1a03bd5a627 (patch)
tree10169e2ee80d03cd5dbe28b0398530a8356bea2e /unix/tclUnixCompat.c
parente2e924c95a17b7e1ec1a1ea20713ff558fe3f4c8 (diff)
downloadtcl-d56846dd9104d99b6b8ce56fb27ab1a03bd5a627.zip
tcl-d56846dd9104d99b6b8ce56fb27ab1a03bd5a627.tar.gz
tcl-d56846dd9104d99b6b8ce56fb27ab1a03bd5a627.tar.bz2
Fix gcc warning: signed and unsigned type in conditional expression
Diffstat (limited to 'unix/tclUnixCompat.c')
-rw-r--r--unix/tclUnixCompat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixCompat.c b/unix/tclUnixCompat.c
index 727eaaf..28017dc 100644
--- a/unix/tclUnixCompat.c
+++ b/unix/tclUnixCompat.c
@@ -6,7 +6,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixCompat.c,v 1.17 2009/02/03 23:10:57 nijtmans Exp $
+ * RCS: @(#) $Id: tclUnixCompat.c,v 1.18 2009/12/11 23:42:41 nijtmans Exp $
*
*/
@@ -736,7 +736,7 @@ CopyArray(
p = buf + len;
for (j = 0; j < i; j++) {
- int sz = (elsize<0 ? strlen(src[j])+1 : elsize);
+ int sz = (elsize<0 ? (int) strlen(src[j]) + 1 : elsize);
len += sz;
if (len > buflen) {