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

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Wed Nov 6 21:22:00 UTC 2013


commit: http://git.uclibc.org/uClibc/commit/?id=f6f47324115bed3049543d4473530841151da2e3
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 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 853ca70..347c899 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" };


More information about the uClibc-cvs mailing list