summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index db13fe6..788b853 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.231 2006/12/13 16:28:06 dkf Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.232 2006/12/13 16:33:26 dkf Exp $
*/
#include "tclInt.h"
@@ -4194,7 +4194,7 @@ TclEvalEx(
Tcl_Obj **elements, *temp = copy[wordIdx];
int *eline;
- TclListObjGetElements(temp, &numElements, &elements);
+ TclListObjGetElements(temp, numElements, elements);
eline = (int *) ckalloc(numElements * sizeof(int));
TclListLines(TclGetString(temp),lcopy[wordIdx],
numElements, eline);
@@ -4211,7 +4211,7 @@ TclEvalEx(
int numElements;
Tcl_Obj **elements, *temp = copy[wordIdx];
- TclListObjGetElements(temp, &numElements, &elements);
+ TclListObjGetElements(temp, numElements, elements);
objectsUsed += numElements;
while (numElements--) {
lines[objIdx] = -1;