diff options
Diffstat (limited to 'coreutils/tr.c')
-rw-r--r-- | coreutils/tr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c index 594571833..6a34e3087 100644 --- a/coreutils/tr.c +++ b/coreutils/tr.c | |||
@@ -52,7 +52,7 @@ static unsigned int expand(const char *arg, char *buffer) | |||
52 | unsigned i; /* XXX: FIXME: use unsigned char? */ | 52 | unsigned i; /* XXX: FIXME: use unsigned char? */ |
53 | unsigned char ac; | 53 | unsigned char ac; |
54 | #define CLO ":]\0" | 54 | #define CLO ":]\0" |
55 | static const char classes[] = | 55 | static const char classes[] ALIGN1 = |
56 | "alpha"CLO "alnum"CLO "digit"CLO "lower"CLO "upper"CLO "space"CLO | 56 | "alpha"CLO "alnum"CLO "digit"CLO "lower"CLO "upper"CLO "space"CLO |
57 | "blank"CLO "punct"CLO "cntrl"CLO; | 57 | "blank"CLO "punct"CLO "cntrl"CLO; |
58 | #define CLASS_invalid 0 /* we increment the retval */ | 58 | #define CLASS_invalid 0 /* we increment the retval */ |