diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-05-15 11:45:42 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-05-15 11:45:42 (GMT) |
commit | f2f41b4b85e855ef94dbfcd86d4e9d6cc7ae14b1 (patch) | |
tree | aeba4a36d910a2368f0c763072692b6d6de70023 /unix | |
parent | 36cebb89fe04bab244acd87f76950ec68ec3b946 (diff) | |
parent | db43c8cbed9e1d40d644e2ecb9112606d4a528bd (diff) | |
download | tcl-f2f41b4b85e855ef94dbfcd86d4e9d6cc7ae14b1.zip tcl-f2f41b4b85e855ef94dbfcd86d4e9d6cc7ae14b1.tar.gz tcl-f2f41b4b85e855ef94dbfcd86d4e9d6cc7ae14b1.tar.bz2 |
Merge 8.6
Diffstat (limited to 'unix')
-rw-r--r-- | unix/dltest/pkgooa.c | 6 |
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; } |