diff options
author | gdt <gdt> | 2004-12-09 14:47:09 +0000 |
---|---|---|
committer | gdt <gdt> | 2004-12-09 14:47:09 +0000 |
commit | c363d62b25c09b19b15e86beb5552ca87ed1abeb (patch) | |
tree | 482723ff5f0a3414e90211d8ae952d047d8e4b66 | |
parent | f4d91f11a04e47cdfdfa60c60e01b8607d9e482d (diff) | |
download | quagga-c363d62b25c09b19b15e86beb5552ca87ed1abeb.tar.bz2 quagga-c363d62b25c09b19b15e86beb5552ca87ed1abeb.tar.xz |
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 + |