diff options
author | Ondrej Filip <feela@network.cz> | 2005-02-14 11:54:16 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2005-02-14 11:54:16 +0000 |
commit | b181f444a6538b03a02296f02928e3c131b251a6 (patch) | |
tree | 31086fa3f7d91ae64522a136da7d02cd821c1488 /proto/ospf/packet.c | |
parent | 75c1c585197f2b4a1b0295d36fe16a4869c21914 (diff) |
Small changes to reduce number of warnings.
Diffstat (limited to 'proto/ospf/packet.c')
-rw-r--r-- | proto/ospf/packet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/packet.c b/proto/ospf/packet.c index 6a334d0d..ac6a06f2 100644 --- a/proto/ospf/packet.c +++ b/proto/ospf/packet.c @@ -373,7 +373,7 @@ ospf_send_to_agt(sock * sk, struct ospf_iface *ifa, u8 state) { struct ospf_neighbor *n; - WALK_LIST(NODE n, ifa->neigh_list) if (n->state >= state) + WALK_LIST(n, ifa->neigh_list) if (n->state >= state) ospf_send_to(sk, n->ip, ifa); } |