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/libc/time | |
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/libc/time')
-rw-r--r-- | newlib/libc/time/tzset_r.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |