diff options
author | hasso <hasso> | 2004-09-26 16:09:34 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-26 16:09:34 +0000 |
commit | 052fe22a25dfb0cbc1a23cba5efdcda98f26a627 (patch) | |
tree | f1ac1aed444088f00d533834ab5993b3f081107c /ripngd/ripng_nexthop.c | |
parent | 9c7534d2b2bdd5b4b6f7afa19fe4def45cd930f7 (diff) | |
download | quagga-052fe22a25dfb0cbc1a23cba5efdcda98f26a627.tar.bz2 quagga-052fe22a25dfb0cbc1a23cba5efdcda98f26a627.tar.xz |
Compiler warnings fixes.
Diffstat (limited to 'ripngd/ripng_nexthop.c')
-rw-r--r-- | ripngd/ripng_nexthop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ripngd/ripng_nexthop.c b/ripngd/ripng_nexthop.c index 04b13c50..e946dc91 100644 --- a/ripngd/ripng_nexthop.c +++ b/ripngd/ripng_nexthop.c @@ -161,7 +161,7 @@ ripng_rte_send(struct list *ripng_rte_list, struct interface *ifp, /* A nexthop entry should be at least followed by 1 RTE */ if (num == (rtemax-1)) { - ret = ripng_send_packet (STREAM_DATA (s), stream_get_endp (s), + ret = ripng_send_packet ((caddr_t) STREAM_DATA (s), stream_get_endp (s), to, ifp); if (ret >= 0 && IS_RIPNG_DEBUG_SEND) @@ -191,7 +191,7 @@ ripng_rte_send(struct list *ripng_rte_list, struct interface *ifp, TAG_OUT(data), METRIC_OUT(data)); if (num == rtemax) { - ret = ripng_send_packet (STREAM_DATA (s), stream_get_endp (s), + ret = ripng_send_packet ((caddr_t) STREAM_DATA (s), stream_get_endp (s), to, ifp); if (ret >= 0 && IS_RIPNG_DEBUG_SEND) @@ -204,7 +204,7 @@ ripng_rte_send(struct list *ripng_rte_list, struct interface *ifp, /* If unwritten RTE exist, flush it. */ if (num != 0) { - ret = ripng_send_packet (STREAM_DATA (s), stream_get_endp (s), + ret = ripng_send_packet ((caddr_t) STREAM_DATA (s), stream_get_endp (s), to, ifp); if (ret >= 0 && IS_RIPNG_DEBUG_SEND) |