commit | 21401f3215be26dcb0f787105f5907745498e966 | [log] [tgz] |
---|---|---|
author | David Lamparter <equinox@opensourcerouting.org> | Tue Mar 03 08:55:26 2015 +0100 |
committer | David Lamparter <equinox@opensourcerouting.org> | Tue Apr 21 10:17:57 2015 +0200 |
tree | c99c59e06f3fddad44cbd977f8fadad2dc9e76a7 | |
parent | b7d5021bfa161f797cbfb1e92bf5b94327fb1b71 [diff] [blame] |
*: fix signedness mix-ups Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
diff --git a/bgpd/bgp_aspath.c b/bgpd/bgp_aspath.c index 191a9e7..0aec3ef 100644 --- a/bgpd/bgp_aspath.c +++ b/bgpd/bgp_aspath.c
@@ -1378,7 +1378,7 @@ aspath_add_asns (struct aspath *aspath, as_t asno, u_char type, unsigned num) { struct assegment *assegment = aspath->segments; - int i; + unsigned i; if (assegment && assegment->type == type) {