diff options
author | Denys Vlasenko | 2012-09-03 11:41:30 +0200 |
---|---|---|
committer | Denys Vlasenko | 2012-09-03 11:41:30 +0200 |
commit | 5f10fdf1dd43cf8db74cd2f84eb1c6ede48e3328 (patch) | |
tree | 9aea17786210f7d2ed2aaab7617efa960a18e0dc /networking | |
parent | c5a9fa2d2ac0165eda4b862e99cfcb91a9380416 (diff) | |
download | busybox-5f10fdf1dd43cf8db74cd2f84eb1c6ede48e3328.zip busybox-5f10fdf1dd43cf8db74cd2f84eb1c6ede48e3328.tar.gz |
Fix compile failure in ll_proto.c
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/libiproute/ll_proto.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/ll_proto.c b/networking/libiproute/ll_proto.c index 60add2f..da2b53c 100644 --- a/networking/libiproute/ll_proto.c +++ b/networking/libiproute/ll_proto.c @@ -16,7 +16,7 @@ /* Please conditionalize exotic protocols on CONFIG_something */ -static const uint16_t llproto_ids[] = +static const uint16_t llproto_ids[] = { #define __PF(f,n) ETH_P_##f, __PF(LOOP,loop) __PF(PUP,pup) @@ -79,7 +79,7 @@ __PF(ECONET,econet) 0x8100, ETH_P_IP -; +}; #undef __PF /* Keep declarations above and below in sync! */ |