mirror of git://git.musl-libc.org/musl
fix assumptions that char is signed
This commit is contained in:
parent
2b71a4d1df
commit
471c6067d9
|
@ -21,8 +21,8 @@ static char dst_name[TZNAME_MAX+1];
|
||||||
|
|
||||||
/* all elements are zero-based */
|
/* all elements are zero-based */
|
||||||
static struct rule {
|
static struct rule {
|
||||||
char month;
|
signed char month;
|
||||||
char week;
|
signed char week;
|
||||||
short day;
|
short day;
|
||||||
int time;
|
int time;
|
||||||
} __dst_start, __dst_end;
|
} __dst_start, __dst_end;
|
||||||
|
|
Loading…
Reference in New Issue