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 /e2fsprogs | |
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 'e2fsprogs')
-rw-r--r-- | e2fsprogs/fsck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e2fsprogs/fsck.c b/e2fsprogs/fsck.c index 96c1e51e0..028f8a803 100644 --- a/e2fsprogs/fsck.c +++ b/e2fsprogs/fsck.c | |||
@@ -190,7 +190,7 @@ struct globals { | |||
190 | * Required for the uber-silly devfs /dev/ide/host1/bus2/target3/lun3 | 190 | * Required for the uber-silly devfs /dev/ide/host1/bus2/target3/lun3 |
191 | * pathames. | 191 | * pathames. |
192 | */ | 192 | */ |
193 | static const char *const devfs_hier[] = { | 193 | static const char *const devfs_hier[] ALIGN_PTR = { |
194 | "host", "bus", "target", "lun", NULL | 194 | "host", "bus", "target", "lun", NULL |
195 | }; | 195 | }; |
196 | #endif | 196 | #endif |