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)
commit5ef9acf4bc1cfe8190fd7eab0eaedb217d4918e6 (patch)
tree77450114f54f1c79bdae41b72bec1190eb2b8962
parent9c2ffd7c1d39d5a7c52edde931d11829d0291800 (diff)
downloadtcl-5ef9acf4bc1cfe8190fd7eab0eaedb217d4918e6.zip
tcl-5ef9acf4bc1cfe8190fd7eab0eaedb217d4918e6.tar.gz
tcl-5ef9acf4bc1cfe8190fd7eab0eaedb217d4918e6.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;