From f6f47324115bed3049543d4473530841151da2e3 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Tue, 5 Nov 2013 20:57:23 +0100 Subject: time.c: make ll_tzname* static again Signed-off-by: Bernhard Reutner-Fischer --- libc/misc/time/time.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/misc') 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" }; -- cgit v1.2.3