diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-12-06 10:17:58 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-12-06 10:17:58 (GMT) |
| commit | e3cbd9b2032d7a1b7a9d07a6b55c79a6375e7bc7 (patch) | |
| tree | e026b76680817a377f1058426208ebdd55a68d8d /generic/tclExecute.c | |
| parent | 7b6fb9f7b6ceacf99fb77cb16b52032f583c0101 (diff) | |
| download | tcl-e3cbd9b2032d7a1b7a9d07a6b55c79a6375e7bc7.zip tcl-e3cbd9b2032d7a1b7a9d07a6b55c79a6375e7bc7.tar.gz tcl-e3cbd9b2032d7a1b7a9d07a6b55c79a6375e7bc7.tar.bz2 | |
Oops, wrong macro.
Diffstat (limited to 'generic/tclExecute.c')
| -rw-r--r-- | generic/tclExecute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index c3f5372..b6d8841 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -6268,8 +6268,8 @@ TEBCresume( numLists = infoPtr->numLists; tmpPtr = OBJ_AT_DEPTH(1); - iterNum = INT2PTR(tmpPtr->internalRep.twoPtrValue.ptr1); - iterMax = INT2PTR(tmpPtr->internalRep.twoPtrValue.ptr2); + iterNum = PTR2INT(tmpPtr->internalRep.twoPtrValue.ptr1); + iterMax = PTR2INT(tmpPtr->internalRep.twoPtrValue.ptr2); /* * If some list still has a remaining list element iterate one more |
