diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-07-30 01:02:26 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-07-30 01:02:26 +0200 |
commit | b07c4cb33e9b78ac37865d4a4d781f9a09d59175 (patch) | |
tree | bed225fd83efc860e0a070d05719adf328803f07 /ospf6d/ospf6_message.c | |
parent | Enable debugs in quagga-reload (diff) | |
download | frr-b07c4cb33e9b78ac37865d4a4d781f9a09d59175.tar.xz frr-b07c4cb33e9b78ac37865d4a4d781f9a09d59175.zip |
arm compilation failures.
Ticket: Trivial
Reviewed by: Trivial
Testing: arm/powerpc/amd64 targets now build
Apparently we have a arm build. Who knew? This fixes the compile warnings/errors
produced when you compile a arm build with -Werror.
Diffstat (limited to 'ospf6d/ospf6_message.c')
-rw-r--r-- | ospf6d/ospf6_message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_message.c b/ospf6d/ospf6_message.c index 09137cfed..fe57f2f42 100644 --- a/ospf6d/ospf6_message.c +++ b/ospf6d/ospf6_message.c @@ -1640,7 +1640,7 @@ static void ospf6_send (struct in6_addr *src, struct in6_addr *dst, struct ospf6_interface *oi, struct ospf6_header *oh) { - int len; + unsigned int len; char srcname[64], dstname[64]; struct iovec iovector[2]; |