diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-10-27 17:13:59 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-10-27 17:13:59 (GMT) |
| commit | 14ab5ccf54dac59237afc1a65d09a4a4860f197b (patch) | |
| tree | 67c647f931ab8031a7e1c270b81129ea8ebac784 /generic/tclTestProcBodyObj.c | |
| parent | da07fbe0220630931595f469782262f84303e064 (diff) | |
| download | tcl-14ab5ccf54dac59237afc1a65d09a4a4860f197b.zip tcl-14ab5ccf54dac59237afc1a65d09a4a4860f197b.tar.gz tcl-14ab5ccf54dac59237afc1a65d09a4a4860f197b.tar.bz2 | |
[26870862f0] follow-up: of course it was not complete yet
Diffstat (limited to 'generic/tclTestProcBodyObj.c')
| -rw-r--r-- | generic/tclTestProcBodyObj.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclTestProcBodyObj.c b/generic/tclTestProcBodyObj.c index 07800ca..2139b81 100644 --- a/generic/tclTestProcBodyObj.c +++ b/generic/tclTestProcBodyObj.c @@ -263,7 +263,7 @@ ProcBodyTestProcObjCmd( if (cmdPtr->objClientData != TclIsProc(cmdPtr)) { Tcl_AppendStringsToObj(Tcl_GetObjResult(interp), - "command \"", fullName, "\" is not a Tcl procedure", NULL); + "command \"", fullName, "\" is not a Tcl procedure", (void *)NULL); return TCL_ERROR; } @@ -274,7 +274,7 @@ ProcBodyTestProcObjCmd( procPtr = (Proc *) cmdPtr->objClientData; if (procPtr == NULL) { Tcl_AppendStringsToObj(Tcl_GetObjResult(interp), "procedure \"", - fullName, "\" does not have a Proc struct!", NULL); + fullName, "\" does not have a Proc struct!", (void *)NULL); return TCL_ERROR; } @@ -286,7 +286,7 @@ ProcBodyTestProcObjCmd( if (bodyObjPtr == NULL) { Tcl_AppendStringsToObj(Tcl_GetObjResult(interp), "failed to create a procbody object for procedure \"", - fullName, "\"", NULL); + fullName, "\"", (void *)NULL); return TCL_ERROR; } Tcl_IncrRefCount(bodyObjPtr); |
