diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-11-30 15:10:43 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-11-30 15:10:43 +0100 |
commit | 6599e380ed5e1b1272a5e0e26183471d8b4b2051 (patch) | |
tree | 70cbf621f44e72a57ffa8d5f00ed3a53b3700426 | |
parent | 6cc4962b60d451e918e338ccca98afda99f49f6e (diff) | |
download | busybox-w32-6599e380ed5e1b1272a5e0e26183471d8b4b2051.tar.gz busybox-w32-6599e380ed5e1b1272a5e0e26183471d8b4b2051.tar.bz2 busybox-w32-6599e380ed5e1b1272a5e0e26183471d8b4b2051.zip |
mount: make filesystems[] array byte-aligned
text data bss dec hex filename
1021120 559 5052 1026731 faaab busybox_old
1021092 559 5052 1026703 faa8f busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | util-linux/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index aa38847ec..cfb6b570f 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -641,7 +641,7 @@ static unsigned long parse_mount_options(char *options, char **unrecognized) | |||
641 | // Return a list of all block device backed filesystems | 641 | // Return a list of all block device backed filesystems |
642 | static llist_t *get_block_backed_filesystems(void) | 642 | static llist_t *get_block_backed_filesystems(void) |
643 | { | 643 | { |
644 | static const char filesystems[2][sizeof("/proc/filesystems")] = { | 644 | static const char filesystems[2][sizeof("/proc/filesystems")] ALIGN1 = { |
645 | "/etc/filesystems", | 645 | "/etc/filesystems", |
646 | "/proc/filesystems", | 646 | "/proc/filesystems", |
647 | }; | 647 | }; |