Skip to content

Commit

Permalink
(backport): Funcs without args must explicitly take void
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.nijtmans committed May 10, 2024
1 parent 9c2ffd7 commit 5ef9acf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generic/tclClockFmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -3566,7 +3566,7 @@ ClockFrmScnClearCaches(void)
}

void
ClockFrmScnFinalize()
ClockFrmScnFinalize(void)
{
if (!initialized) {
return;
Expand Down

0 comments on commit 5ef9acf

Please sign in to comment.