aboutsummaryrefslogtreecommitdiffstats
path: root/regenc.h
diff options
context:
space:
mode:
Diffstat (limited to 'regenc.h')
-rw-r--r--regenc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/regenc.h b/regenc.h
index e220aabc5b..5e467961a1 100644
--- a/regenc.h
+++ b/regenc.h
@@ -102,13 +102,13 @@ typedef struct {
typedef struct {
- const UChar *name;
- int ctype;
short int len;
+ const UChar name[6];
+ int ctype;
} PosixBracketEntryType;
#define POSIX_BRACKET_ENTRY_INIT(name, ctype) \
- {(const UChar* )(name), (ctype), (short int )(sizeof(name) - 1)}
+ {(short int )(sizeof(name) - 1), (name), (ctype)}
#ifndef numberof
#define numberof(array) (int )(sizeof(array) / sizeof((array)[0]))