diff options
author | sebres <sebres@users.sourceforge.net> | 2017-05-16 09:22:17 (GMT) |
---|---|---|
committer | sebres <sebres@users.sourceforge.net> | 2017-05-16 09:22:17 (GMT) |
commit | 887b450f7e64e2426a51e06246cb9295b126932c (patch) | |
tree | fcf9206cfdb2e8ea94b2f12d865b05c7efd1fd13 | |
parent | 3880f148a1f58dbcc23a04aa669f2e02426db96d (diff) | |
download | tcl-887b450f7e64e2426a51e06246cb9295b126932c.zip tcl-887b450f7e64e2426a51e06246cb9295b126932c.tar.gz tcl-887b450f7e64e2426a51e06246cb9295b126932c.tar.bz2 |
small amend with forgetten static keyword by optionsebres_8_6_clock_speedup
-rw-r--r-- | generic/tclClock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclClock.c b/generic/tclClock.c index 80740c8..c980a27 100644 --- a/generic/tclClock.c +++ b/generic/tclClock.c @@ -3118,7 +3118,7 @@ ClockParseFmtScnArgs( ) { /* we accept "-now" as current date-time */ - const char *const nowOpts[] = { + static const char *const nowOpts[] = { "-now", NULL }; int idx; |