[git commit branch/0.9.33] time.c: make ll_tzname* static again

Mike Frysinger vapier at gentoo.org
Wed Jan 8 03:51:07 UTC 2014


commit: http://git.uclibc.org/uClibc/commit/?id=7706cd4737ddb89e9b4937936e614d87d1abbd49
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/0.9.33

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
(cherry picked from commit f6f47324115bed3049543d4473530841151da2e3)
Signed-off-by: Mike Frysinger <vapier at gentoo.org>
---
 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 8e2ebf1..27258d6 100644
--- a/libc/misc/time/time.c
+++ b/libc/misc/time/time.c
@@ -605,11 +605,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" };


More information about the uClibc-cvs mailing list