diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2022-02-06 20:07:12 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2022-02-06 20:07:12 +0100 |
commit | 987be932ed3cbea56b68bbe85649191c13b66015 (patch) | |
tree | e6bee7fb9dca0402f5ec97807a64c1c9938dd854 /libbb | |
parent | ca466f385ac985a8b3491daa9f326dc480cdee70 (diff) | |
download | busybox-w32-987be932ed3cbea56b68bbe85649191c13b66015.tar.gz busybox-w32-987be932ed3cbea56b68bbe85649191c13b66015.tar.bz2 busybox-w32-987be932ed3cbea56b68bbe85649191c13b66015.zip |
*: slap on a few ALIGN_PTR where appropriate
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/getopt32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/getopt32.c b/libbb/getopt32.c index 5ab4d66f1..e861d0567 100644 --- a/libbb/getopt32.c +++ b/libbb/getopt32.c | |||
@@ -296,7 +296,7 @@ Special characters: | |||
296 | 296 | ||
297 | /* Code here assumes that 'unsigned' is at least 32 bits wide */ | 297 | /* Code here assumes that 'unsigned' is at least 32 bits wide */ |
298 | 298 | ||
299 | const char *const bb_argv_dash[] = { "-", NULL }; | 299 | const char *const bb_argv_dash[] ALIGN_PTR = { "-", NULL }; |
300 | 300 | ||
301 | enum { | 301 | enum { |
302 | PARAM_STRING, | 302 | PARAM_STRING, |