diff options
author | Denys Vlasenko | 2022-02-06 20:07:12 +0100 |
---|---|---|
committer | Denys Vlasenko | 2022-02-06 20:07:12 +0100 |
commit | 987be932ed3cbea56b68bbe85649191c13b66015 (patch) | |
tree | e6bee7fb9dca0402f5ec97807a64c1c9938dd854 /coreutils | |
parent | ca466f385ac985a8b3491daa9f326dc480cdee70 (diff) | |
download | busybox-987be932ed3cbea56b68bbe85649191c13b66015.zip busybox-987be932ed3cbea56b68bbe85649191c13b66015.tar.gz |
*: slap on a few ALIGN_PTR where appropriate
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/test.c b/coreutils/test.c index a914c74..840a0da 100644 --- a/coreutils/test.c +++ b/coreutils/test.c @@ -242,7 +242,7 @@ int depth; depth--; \ return __res; \ } while (0) -static const char *const TOKSTR[] = { +static const char *const TOKSTR[] ALIGN_PTR = { "EOI", "FILRD", "FILWR", |