diff options
author | gdt <gdt> | 2004-12-09 14:47:09 +0000 |
---|---|---|
committer | gdt <gdt> | 2004-12-09 14:47:09 +0000 |
commit | 1686f93fcad703c3cb5b8d4aa5be3c62b5e966bb (patch) | |
tree | 9f921e5de0ded8c9bdf50467a3e661336d1c1b20 | |
parent | c29fdba771810c70d78d87127d3a479e0f72b60e (diff) |
add comment about warning of comparison between signed and unsigned
-rw-r--r-- | ospf6d/ospf6_intra.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ospf6d/ospf6_intra.c b/ospf6d/ospf6_intra.c index 365b98d1..62b7ffc1 100644 --- a/ospf6d/ospf6_intra.c +++ b/ospf6d/ospf6_intra.c @@ -174,6 +174,7 @@ ospf6_router_lsa_originate (struct thread *thread) /* Multiple Router-LSA instance according to size limit setting */ if ( (oa->router_lsa_size_limit != 0) && ((caddr_t) lsdesc + sizeof (struct ospf6_router_lsdesc) - + /* XXX warning: comparison between signed and unsigned */ (caddr_t) buffer > oa->router_lsa_size_limit)) { if ((caddr_t) lsdesc == (caddr_t) router_lsa + |