summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-05-10 13:51:31 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-05-10 13:51:31 (GMT)
commit10e58e746914db88dc0f208c282e353b6c0b0eb1 (patch)
treeec70798f2ca2faf5826aa317592a52f469c3f449
parent0e940ad7b41791eecc3a45c97467253b1770d153 (diff)
downloadtcl-10e58e746914db88dc0f208c282e353b6c0b0eb1.zip
tcl-10e58e746914db88dc0f208c282e353b6c0b0eb1.tar.gz
tcl-10e58e746914db88dc0f208c282e353b6c0b0eb1.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;