summaryrefslogtreecommitdiffstats
path: root/generic/tclTestObj.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclTestObj.c')
-rw-r--r--generic/tclTestObj.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclTestObj.c b/generic/tclTestObj.c
index 8597bbc..f113cfe 100644
--- a/generic/tclTestObj.c
+++ b/generic/tclTestObj.c
@@ -522,7 +522,7 @@ TestindexobjCmd(
}
Tcl_GetIndexFromObj(NULL, objv[1], tablePtr, "token", 0, &index);
- indexRep = (struct IndexRep *) objv[1]->internalRep.otherValuePtr;
+ indexRep = (struct IndexRep *) objv[1]->internalRep.twoPtrValue.ptr1;
indexRep->index = index2;
result = Tcl_GetIndexFromObj(NULL, objv[1],
tablePtr, "token", 0, &index);
@@ -559,7 +559,7 @@ TestindexobjCmd(
if ( objv[3]->typePtr != NULL
&& !strcmp( "index", objv[3]->typePtr->name ) ) {
- indexRep = (struct IndexRep *) objv[3]->internalRep.otherValuePtr;
+ indexRep = (struct IndexRep *) objv[3]->internalRep.twoPtrValue.ptr1;
if (indexRep->tablePtr == (VOID *) argv) {
objv[3]->typePtr->freeIntRepProc(objv[3]);
objv[3]->typePtr = NULL;
@@ -1211,7 +1211,7 @@ TeststringobjCmd(
}
if (varPtr[varIndex] != NULL) {
strPtr = (TestString *)
- (varPtr[varIndex])->internalRep.otherValuePtr;
+ (varPtr[varIndex])->internalRep.twoPtrValue.ptr1;
length = (int) strPtr->allocated;
} else {
length = -1;
@@ -1264,7 +1264,7 @@ TeststringobjCmd(
}
if (varPtr[varIndex] != NULL) {
strPtr = (TestString *)
- (varPtr[varIndex])->internalRep.otherValuePtr;
+ (varPtr[varIndex])->internalRep.twoPtrValue.ptr1;
length = (int) strPtr->uallocated;
} else {
length = -1;