summaryrefslogtreecommitdiffstats
path: root/generic/tclTestProcBodyObj.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2023-10-27 17:13:59 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2023-10-27 17:13:59 (GMT)
commit14ab5ccf54dac59237afc1a65d09a4a4860f197b (patch)
tree67c647f931ab8031a7e1c270b81129ea8ebac784 /generic/tclTestProcBodyObj.c
parentda07fbe0220630931595f469782262f84303e064 (diff)
downloadtcl-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.c6
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);