summaryrefslogtreecommitdiffstats
path: root/unix/dltest
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2023-05-15 11:45:42 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2023-05-15 11:45:42 (GMT)
commitf2f41b4b85e855ef94dbfcd86d4e9d6cc7ae14b1 (patch)
treeaeba4a36d910a2368f0c763072692b6d6de70023 /unix/dltest
parent36cebb89fe04bab244acd87f76950ec68ec3b946 (diff)
parentdb43c8cbed9e1d40d644e2ecb9112606d4a528bd (diff)
downloadtcl-f2f41b4b85e855ef94dbfcd86d4e9d6cc7ae14b1.zip
tcl-f2f41b4b85e855ef94dbfcd86d4e9d6cc7ae14b1.tar.gz
tcl-f2f41b4b85e855ef94dbfcd86d4e9d6cc7ae14b1.tar.bz2
Merge 8.6
Diffstat (limited to 'unix/dltest')
-rw-r--r--unix/dltest/pkgooa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/dltest/pkgooa.c b/unix/dltest/pkgooa.c
index 444bb81..e75a2c3 100644
--- a/unix/dltest/pkgooa.c
+++ b/unix/dltest/pkgooa.c
@@ -125,18 +125,18 @@ Pkgooa_Init(
}
if (tclStubsPtr == NULL) {
Tcl_AppendResult(interp, "Tcl stubs are not initialized, "
- "did you compile using -DUSE_TCL_STUBS? ");
+ "did you compile using -DUSE_TCL_STUBS? ", NULL);
return TCL_ERROR;
}
if (Tcl_OOInitStubs(interp) == NULL) {
return TCL_ERROR;
}
if (tclOOStubsPtr == NULL) {
- Tcl_AppendResult(interp, "TclOO stubs are not initialized");
+ Tcl_AppendResult(interp, "TclOO stubs are not initialized", NULL);
return TCL_ERROR;
}
if (tclOOIntStubsPtr == NULL) {
- Tcl_AppendResult(interp, "TclOO internal stubs are not initialized");
+ Tcl_AppendResult(interp, "TclOO internal stubs are not initialized", NULL);
return TCL_ERROR;
}