aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2019-05-21 17:29:24 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2019-05-21 17:29:24 +0200
commit84fc645605827d53aa3e749dfff309978b1bc73d (patch)
treefaf841135de862f1173c8661a80de7640894f485 /networking/libiproute
parent831844c13931f14bd0433c1eb848c863288a8c06 (diff)
downloadbusybox-w32-84fc645605827d53aa3e749dfff309978b1bc73d.tar.gz
busybox-w32-84fc645605827d53aa3e749dfff309978b1bc73d.tar.bz2
busybox-w32-84fc645605827d53aa3e749dfff309978b1bc73d.zip
*: slap on a few ALIGN1/2s where appropriate
The result of looking at "grep -F -B2 '*fill*' busybox_unstripped.map" text data bss dec hex filename 952537 485 7296 960318 ea73e busybox_old 952527 485 7296 960308 ea734 busybox_unstripped Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/libiproute')
-rw-r--r--networking/libiproute/ll_proto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/ll_proto.c b/networking/libiproute/ll_proto.c
index 7d46221ac..611e0a2c9 100644
--- a/networking/libiproute/ll_proto.c
+++ b/networking/libiproute/ll_proto.c
@@ -15,7 +15,7 @@
15 15
16/* Please conditionalize exotic protocols on CONFIG_something */ 16/* Please conditionalize exotic protocols on CONFIG_something */
17 17
18static const uint16_t llproto_ids[] = { 18static const uint16_t llproto_ids[] ALIGN2 = {
19#define __PF(f,n) ETH_P_##f, 19#define __PF(f,n) ETH_P_##f,
20__PF(LOOP,loop) 20__PF(LOOP,loop)
21__PF(PUP,pup) 21__PF(PUP,pup)