diff options
| author | dkf <donal.k.fellows@manchester.ac.uk> | 2024-06-04 15:54:35 (GMT) |
|---|---|---|
| committer | dkf <donal.k.fellows@manchester.ac.uk> | 2024-06-04 15:54:35 (GMT) |
| commit | ca3ac898ea7724652c49e3cb7f57fcf974b22a16 (patch) | |
| tree | b5c98217485282023c93ab5b46c2cfde0af5ddc5 /generic/tclClockFmt.c | |
| parent | cd72d108bf14caa354d011a2ce41426ea011da2a (diff) | |
| download | tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.zip tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.tar.gz tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.tar.bz2 | |
Make function definitions have right argument style
Diffstat (limited to 'generic/tclClockFmt.c')
| -rw-r--r-- | generic/tclClockFmt.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/generic/tclClockFmt.c b/generic/tclClockFmt.c index ea5f0a5..fead7fd 100644 --- a/generic/tclClockFmt.c +++ b/generic/tclClockFmt.c @@ -1241,9 +1241,13 @@ ObjListSearch( /* currently unused */ static int -LocaleListSearch(ClockFmtScnCmdArgs *opts, - DateInfo *info, int mcKey, int *val, - int minLen, int maxLen) +LocaleListSearch( + ClockFmtScnCmdArgs *opts, + DateInfo *info, + int mcKey, + int *val, + int minLen, + int maxLen) { Tcl_Obj **lstv; Tcl_Size lstc; |
