diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-01-19 16:44:42 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-01-19 16:44:42 +0000 |
commit | f693170ab32e1b650953be93c3502f0c3c099d27 (patch) | |
tree | ecbb5e4ca6e90af2a8240211df176d36e951df6c /newlib | |
parent | 8b58b9668f0ce59cf411db6cb8ffaf7f590a8fb6 (diff) | |
download | cygnal-f693170ab32e1b650953be93c3502f0c3c099d27.tar.gz cygnal-f693170ab32e1b650953be93c3502f0c3c099d27.tar.bz2 cygnal-f693170ab32e1b650953be93c3502f0c3c099d27.zip |
2005-01-19 Shaun Jackman <sjackman@gmail.com>
* tzset_r.c (_tzname): Add a comma.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/time/tzset_r.c | 2 |
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; |