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 | fc2eda45ffeb2c6522b5fae9392b98782f50b7cf (patch) | |
| tree | ec70798f2ca2faf5826aa317592a52f469c3f449 /generic/tclClockFmt.c | |
| parent | f1a4837a8298c3dc593cef50082781de015df329 (diff) | |
| download | tcl-fc2eda45ffeb2c6522b5fae9392b98782f50b7cf.zip tcl-fc2eda45ffeb2c6522b5fae9392b98782f50b7cf.tar.gz tcl-fc2eda45ffeb2c6522b5fae9392b98782f50b7cf.tar.bz2 | |
Funcs without args must explicitly take void
Otherwise C compilers operate in a weird legacy mode which we never want.
Diffstat (limited to 'generic/tclClockFmt.c')
| -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; |
