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>
diff --git a/networking/netstat.c b/networking/netstat.c
index 3ab7b0d..807800a 100644
--- a/networking/netstat.c
+++ b/networking/netstat.c
@@ -114,7 +114,7 @@
TCP_CLOSING, /* now a valid state */
};
-static const char *const tcp_state[] = {
+static const char *const tcp_state[] ALIGN_PTR = {
"",
"ESTABLISHED",
"SYN_SENT",