fix assumptions that char is signed

This commit is contained in:
Rich Felker 2011-09-16 14:39:15 -04:00
parent 2b71a4d1df
commit 471c6067d9
1 changed files with 2 additions and 2 deletions

View File

@ -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;