aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2012-09-03 11:41:30 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2012-09-03 11:41:30 +0200
commit5f10fdf1dd43cf8db74cd2f84eb1c6ede48e3328 (patch)
tree9aea17786210f7d2ed2aaab7617efa960a18e0dc
parentc5a9fa2d2ac0165eda4b862e99cfcb91a9380416 (diff)
downloadbusybox-w32-5f10fdf1dd43cf8db74cd2f84eb1c6ede48e3328.tar.gz
busybox-w32-5f10fdf1dd43cf8db74cd2f84eb1c6ede48e3328.tar.bz2
busybox-w32-5f10fdf1dd43cf8db74cd2f84eb1c6ede48e3328.zip
Fix compile failure in ll_proto.c
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--networking/libiproute/ll_proto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/ll_proto.c b/networking/libiproute/ll_proto.c
index 60add2f0c..da2b53cbf 100644
--- a/networking/libiproute/ll_proto.c
+++ b/networking/libiproute/ll_proto.c
@@ -16,7 +16,7 @@
16 16
17/* Please conditionalize exotic protocols on CONFIG_something */ 17/* Please conditionalize exotic protocols on CONFIG_something */
18 18
19static const uint16_t llproto_ids[] = 19static const uint16_t llproto_ids[] = {
20#define __PF(f,n) ETH_P_##f, 20#define __PF(f,n) ETH_P_##f,
21__PF(LOOP,loop) 21__PF(LOOP,loop)
22__PF(PUP,pup) 22__PF(PUP,pup)
@@ -79,7 +79,7 @@ __PF(ECONET,econet)
79 79
800x8100, 800x8100,
81ETH_P_IP 81ETH_P_IP
82; 82};
83#undef __PF 83#undef __PF
84 84
85/* Keep declarations above and below in sync! */ 85/* Keep declarations above and below in sync! */