summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2024-05-14 18:37:56 (GMT)
committerdgp <dgp@users.sourceforge.net>2024-05-14 18:37:56 (GMT)
commitc0246ecc8d3dd1fc795c999fd93f1ef9b98c2ec5 (patch)
tree44e3a79bff3908583f4af7d65a59c8a083b91270
parentb2a36848cae4a9611bea5383c666e684ea9b49da (diff)
downloadtcl-c0246ecc8d3dd1fc795c999fd93f1ef9b98c2ec5.zip
tcl-c0246ecc8d3dd1fc795c999fd93f1ef9b98c2ec5.tar.gz
tcl-c0246ecc8d3dd1fc795c999fd93f1ef9b98c2ec5.tar.bz2
Funcs without args must explicitly take void
Otherwise C compilers operate in a weird legacy mode which we never want.
-rw-r--r--generic/tclClockFmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclClockFmt.c b/generic/tclClockFmt.c
index 423b64a..0afc458 100644
--- a/generic/tclClockFmt.c
+++ b/generic/tclClockFmt.c
@@ -3567,7 +3567,7 @@ ClockFrmScnClearCaches(void)
}
void
-ClockFrmScnFinalize()
+ClockFrmScnFinalize(void)
{
if (!initialized) {
return;