diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2006-11-02 16:39:06 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2006-11-02 16:39:06 (GMT) |
commit | d21c1ef27faf5fb3983ceaa6fb2f9e4d92fd79fc (patch) | |
tree | d9e4c3e04a4263f92044201ab69aa5f301ba18f5 /generic/tclBasic.c | |
parent | e1cbc16cc15897f437b3072919403624a0d79ec0 (diff) | |
download | tcl-d21c1ef27faf5fb3983ceaa6fb2f9e4d92fd79fc.zip tcl-d21c1ef27faf5fb3983ceaa6fb2f9e4d92fd79fc.tar.gz tcl-d21c1ef27faf5fb3983ceaa6fb2f9e4d92fd79fc.tar.bz2 |
Silence compiler grumbles.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 964c477..71fa572 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.213 2006/11/02 15:58:04 dgp Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.214 2006/11/02 16:39:06 dkf Exp $ */ #include "tclInt.h" @@ -3354,7 +3354,7 @@ TclEvalObjvInternal( &handlerObjc, &handlerObjv); newObjc = objc + handlerObjc; newObjv = (Tcl_Obj **) TclStackAlloc(interp, - sizeof(Tcl_Obj *) * (unsigned)newObjc); + (int) sizeof(Tcl_Obj *) * newObjc); /* * Copy command prefix from unknown handler and add on the real |