diff options
author | Denys Vlasenko | 2010-01-28 02:24:24 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-01-28 02:24:24 +0100 |
commit | 6b9f1633537e2ff06eb1a0741e4598a294f40fcb (patch) | |
tree | a13f4f3558c2988bc95b5a59c9996da64a0bd570 /networking/libiproute/libnetlink.c | |
parent | 17323a6245597f16321e6bf99536ae9bb89c79cf (diff) | |
download | busybox-6b9f1633537e2ff06eb1a0741e4598a294f40fcb.zip busybox-6b9f1633537e2ff06eb1a0741e4598a294f40fcb.tar.gz |
*: style fixes. no code changes (verified with objdump)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/libiproute/libnetlink.c')
-rw-r--r-- | networking/libiproute/libnetlink.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/networking/libiproute/libnetlink.c b/networking/libiproute/libnetlink.c index 9e6467d..ba24832 100644 --- a/networking/libiproute/libnetlink.c +++ b/networking/libiproute/libnetlink.c @@ -147,7 +147,8 @@ static int rtnl_dump_filter(struct rtnl_handle *rth, if (nladdr.nl_pid != 0 || h->nlmsg_pid != rth->local.nl_pid || - h->nlmsg_seq != rth->dump) { + h->nlmsg_seq != rth->dump + ) { // if (junk) { // err = junk(&nladdr, h, arg2); // if (err < 0) { @@ -281,7 +282,8 @@ int FAST_FUNC rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n, if (nladdr.nl_pid != peer || h->nlmsg_pid != rtnl->local.nl_pid || - h->nlmsg_seq != seq) { + h->nlmsg_seq != seq + ) { // if (junk) { // l_err = junk(&nladdr, h, jarg); // if (l_err < 0) { |