diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-09-16 14:39:15 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-09-16 14:39:15 -0400 |
commit | 471c6067d9a0665809a125260a7dede8ee357f98 (patch) | |
tree | 6519ab3285967e9b425fc10a10c022971a24f7c9 /src | |
parent | fix more instances of old a_xchg (use new a_swap name) (diff) | |
download | grovel-471c6067d9a0665809a125260a7dede8ee357f98.tar.gz grovel-471c6067d9a0665809a125260a7dede8ee357f98.tar.xz |
fix assumptions that char is signed
Diffstat (limited to 'src')
-rw-r--r-- | src/time/tzset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/time/tzset.c b/src/time/tzset.c index b96ea158..0cd47cf2 100644 --- a/src/time/tzset.c +++ b/src/time/tzset.c @@ -21,8 +21,8 @@ static char dst_name[TZNAME_MAX+1]; /* all elements are zero-based */ static struct rule { - char month; - char week; + signed char month; + signed char week; short day; int time; } __dst_start, __dst_end; |