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 /bgpd/bgp_packet.c | |
parent | 9c7534d2b2bdd5b4b6f7afa19fe4def45cd930f7 (diff) | |
download | quagga-052fe22a25dfb0cbc1a23cba5efdcda98f26a627.tar.bz2 quagga-052fe22a25dfb0cbc1a23cba5efdcda98f26a627.tar.xz |
Compiler warnings fixes.
Diffstat (limited to 'bgpd/bgp_packet.c')
-rw-r--r-- | bgpd/bgp_packet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_packet.c b/bgpd/bgp_packet.c index 42820273..b4cd1301 100644 --- a/bgpd/bgp_packet.c +++ b/bgpd/bgp_packet.c @@ -2253,7 +2253,7 @@ bgp_read (struct thread *thread) bgp_notify_send_with_data (peer, BGP_NOTIFY_HEADER_ERR, BGP_NOTIFY_HEADER_BAD_MESLEN, - notify_data_length, 2); + (u_char *) notify_data_length, 2); goto done; } |