summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-05-10 14:42:03 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-05-10 14:42:03 (GMT)
commitfc316d4f32f34ca747f706b53db54903b91610b7 (patch)
tree77450114f54f1c79bdae41b72bec1190eb2b8962
parentcb942e9a4e7d415ee3c88237c43c9770eb4e1af7 (diff)
downloadtcl-fc316d4f32f34ca747f706b53db54903b91610b7.zip
tcl-fc316d4f32f34ca747f706b53db54903b91610b7.tar.gz
tcl-fc316d4f32f34ca747f706b53db54903b91610b7.tar.bz2
(backport): Funcs without args must explicitly take void
-rw-r--r--generic/tclClockFmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclClockFmt.c b/generic/tclClockFmt.c
index 11956cc..9b32020 100644
--- a/generic/tclClockFmt.c
+++ b/generic/tclClockFmt.c
@@ -621,7 +621,7 @@ ClockFmtScnStorageDelete(
{
Tcl_HashEntry *hPtr = HashEntry4FmtScn(fss);
/*
- * This will delete a hash entry and call "Tcl_Free" for storage self, if
+ * This will delete a hash entry and call "ckfree" for storage self, if
* some additionally handling required, freeEntryProc can be used instead
*/
Tcl_DeleteHashEntry(hPtr);
@@ -3566,7 +3566,7 @@ ClockFrmScnClearCaches(void)
}
void
-ClockFrmScnFinalize()
+ClockFrmScnFinalize(void)
{
if (!initialized) {
return;