diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2024-05-10 13:51:31 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2024-05-10 13:51:31 (GMT) |
commit | 10e58e746914db88dc0f208c282e353b6c0b0eb1 (patch) | |
tree | ec70798f2ca2faf5826aa317592a52f469c3f449 | |
parent | 0e940ad7b41791eecc3a45c97467253b1770d153 (diff) | |
download | tcl-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.c | 2 |
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; |