diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-05-10 14:42:03 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-05-10 14:42:03 (GMT) |
| commit | 8fbb4db539a6725ccd32d9e787efa6ff6457b08f (patch) | |
| tree | 77450114f54f1c79bdae41b72bec1190eb2b8962 | |
| parent | 22b098465e0b0d4f811b9328944d43c9e82aea31 (diff) | |
| download | tcl-8fbb4db539a6725ccd32d9e787efa6ff6457b08f.zip tcl-8fbb4db539a6725ccd32d9e787efa6ff6457b08f.tar.gz tcl-8fbb4db539a6725ccd32d9e787efa6ff6457b08f.tar.bz2 | |
(backport): Funcs without args must explicitly take void
| -rw-r--r-- | generic/tclClockFmt.c | 4 |
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; |
