diff options
Diffstat (limited to 'generic/tclStubLib.c')
-rw-r--r-- | generic/tclStubLib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclStubLib.c b/generic/tclStubLib.c index 5914deb..501072c 100644 --- a/generic/tclStubLib.c +++ b/generic/tclStubLib.c @@ -46,9 +46,9 @@ HasStubSupport( if (iPtr->stubTable && iPtr->stubTable->magic == magic) { return iPtr->stubTable; } - iPtr->result = - (char *) "interpreter uses an incompatible stubs mechanism"; - iPtr->freeProc = TCL_STATIC; + iPtr->legacyResult + = (char *) "interpreter uses an incompatible stubs mechanism"; + iPtr->legacyFreeProc = TCL_STATIC; return NULL; } |