diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-11-05 20:57:23 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-11-06 22:22:00 +0100 |
commit | f6f47324115bed3049543d4473530841151da2e3 (patch) | |
tree | 9226f4ec98cdb9ea213191c2c39e6956ae8bc628 /libc | |
parent | 3a3ad3dfc10876b3648369f22df8fc06661ddef0 (diff) |
time.c: make ll_tzname* static again
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc')
-rw-r--r-- | libc/misc/time/time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/misc/time/time.c b/libc/misc/time/time.c index 853ca7096..347c8990c 100644 --- a/libc/misc/time/time.c +++ b/libc/misc/time/time.c @@ -601,11 +601,11 @@ typedef struct ll_tzname_item { } ll_tzname_item_t; /* Structures form a list "UTC" -> "???" -> "tzname1" -> "tzname2"... */ -struct { +static struct { struct ll_tzname_item *next; char tzname[4]; } ll_tzname_UNKNOWN = { NULL, "???" }; -const struct { +static const struct { struct ll_tzname_item *next; char tzname[4]; } ll_tzname_UTC = { (void*)&ll_tzname_UNKNOWN, "UTC" }; |