summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--newlib/libc/ctype/categories.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/ctype/categories.c b/newlib/libc/ctype/categories.c
index db285d7a5..c237324ec 100644
--- a/newlib/libc/ctype/categories.c
+++ b/newlib/libc/ctype/categories.c
@@ -2,8 +2,8 @@
#include "categories.h"
struct _category {
- enum category cat: 11;
- unsigned int first: 21;
+ enum category cat: 8;
+ unsigned int first: 24;
unsigned short delta;
} __attribute__((packed));