Skip to content
Commit 38308473 authored by David S. Miller's avatar David S. Miller
Browse files

ipv6: Various cleanups in route.c



1) x == NULL --> !x
2) x != NULL --> x
3) (x&BIT) --> (x & BIT)
4) (BIT1|BIT2) --> (BIT1 | BIT2)
5) proper argument and struct member alignment

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 507c9b1e
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment