ctype: Avoid GCC note in towctrans_l.c
The previous version genenerated the following GCC note: towctrans_l.c:44:1: note: offset of packed bit-field 'diff' has changed in GCC 4.4 caseconv_table [] = { ^~~~~~~~~~~~~~ Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
This commit is contained in:
parent
d8d18c3e80
commit
0e5f252bc7
@ -37,8 +37,8 @@ enum {TO1, TOLO, TOUP, TOBOTH};
|
|||||||
enum {EVENCAP, ODDCAP};
|
enum {EVENCAP, ODDCAP};
|
||||||
static struct caseconv_entry {
|
static struct caseconv_entry {
|
||||||
uint_least32_t first: 21;
|
uint_least32_t first: 21;
|
||||||
uint_least8_t diff: 8;
|
uint_least32_t diff: 8;
|
||||||
uint_least8_t mode: 2;
|
uint_least32_t mode: 2;
|
||||||
int_least32_t delta: 17;
|
int_least32_t delta: 17;
|
||||||
} __attribute__ ((packed))
|
} __attribute__ ((packed))
|
||||||
caseconv_table [] = {
|
caseconv_table [] = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user