aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2020-11-30 14:58:02 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2020-11-30 14:58:02 +0100
commit6cc4962b60d451e918e338ccca98afda99f49f6e (patch)
treeaf98468492c063ea74d53307678786339447cb5e /util-linux
parent965b795b87c59ed45cc7f16a62301dbae65b1627 (diff)
downloadbusybox-w32-6cc4962b60d451e918e338ccca98afda99f49f6e.tar.gz
busybox-w32-6cc4962b60d451e918e338ccca98afda99f49f6e.tar.bz2
busybox-w32-6cc4962b60d451e918e338ccca98afda99f49f6e.zip
decrease padding: gcc-9.3.1 slaps 32-byte alignment on arrays willy-nilly
text data bss dec hex filename 1021236 559 5052 1026847 fab1f busybox_old 1021120 559 5052 1026731 faaab busybox_unstripped Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/blockdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/blockdev.c b/util-linux/blockdev.c
index e60bbe609..20a031377 100644
--- a/util-linux/blockdev.c
+++ b/util-linux/blockdev.c
@@ -60,7 +60,7 @@ static const char bdcmd_names[] ALIGN1 =
60 "flushbufs" "\0" 60 "flushbufs" "\0"
61 "rereadpt" "\0" 61 "rereadpt" "\0"
62; 62;
63static const uint32_t bdcmd_ioctl[] = { 63static const uint32_t bdcmd_ioctl[] ALIGN4 = {
64 BLKROSET, //setro 64 BLKROSET, //setro
65 BLKROSET, //setrw 65 BLKROSET, //setrw
66 BLKROGET, //getro 66 BLKROGET, //getro