Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2005-01-19 19:44:42 +0300
committerJeff Johnston <jjohnstn@redhat.com>2005-01-19 19:44:42 +0300
commitf693170ab32e1b650953be93c3502f0c3c099d27 (patch)
treeecbb5e4ca6e90af2a8240211df176d36e951df6c /newlib
parent8b58b9668f0ce59cf411db6cb8ffaf7f590a8fb6 (diff)
2005-01-19 Shaun Jackman <sjackman@gmail.com>
* tzset_r.c (_tzname): Add a comma.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog4
-rw-r--r--newlib/libc/time/tzset_r.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 5eaac3ba1..a90fcc2ca 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,7 @@
+2005-01-19 Shaun Jackman <sjackman@gmail.com>
+
+ * tzset_r.c (_tzname): Add a comma.
+
2005-01-18 Aldy Hernandez <aldyh@redhat.com>
* libc/machine/powerpc/vfprintf.c: Use _REENT when calling
diff --git a/newlib/libc/time/tzset_r.c b/newlib/libc/time/tzset_r.c
index 4dec5c778..d6894410f 100644
--- a/newlib/libc/time/tzset_r.c
+++ b/newlib/libc/time/tzset_r.c
@@ -12,7 +12,7 @@ static char __tzname_dst[11];
static char *prev_tzenv = NULL;
/* default to GMT */
-char *_tzname[2] = {"GMT" "GMT"};
+char *_tzname[2] = {"GMT", "GMT"};
int _daylight = 0;
time_t _timezone = (time_t)0;