aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-11-25 20:07:30 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-25 20:07:30 +0000
commit04a28c93bf2d36dc0c0d3c397a477578325b2368 (patch)
treebce57664fa9ad82d180968df8a0ceacdc1a0cdc4
parent210d86efd79f1b025a03fe350ffa281cd1af7ba1 (diff)
parentc41f126f5da0826935c190576386c901840e879e (diff)
downloadiproute2-04a28c93bf2d36dc0c0d3c397a477578325b2368.tar.gz
am c41f126f: am eae80e8c: Merge "Iproute: Fix unused variables"
* commit 'c41f126f5da0826935c190576386c901840e879e': Iproute: Fix unused variables
-rw-r--r--ip/iprule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ip/iprule.c b/ip/iprule.c
index 3ea0e81e..3a716ce0 100644
--- a/ip/iprule.c
+++ b/ip/iprule.c
@@ -49,7 +49,7 @@ int print_rule(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
struct rtmsg *r = NLMSG_DATA(n);
int len = n->nlmsg_len;
int host_len = -1;
- __u32 table, uid_start, uid_end;
+ __u32 table;
struct rtattr * tb[FRA_MAX+1];
char abuf[256];
SPRINT_BUF(b1);