summaryrefslogtreecommitdiff
path: root/babeld/neighbour.c
diff options
context:
space:
mode:
authorMatthieu Boutier <boutier@pps.jussieu.fr>2012-01-08 16:43:08 +0100
committerPaul Jakma <paul@quagga.net>2012-03-25 17:06:52 +0100
commitc7c53fa88ccdbc2d48cf7327c9e4f33cdc517a8a (patch)
tree9bd7e691165412840555be6d10a7a37b69b00bc0 /babeld/neighbour.c
parent3dbda0ceebe369a1071600fe7d8d8ecf45f1027c (diff)
babeld: address some other compilation warnings.
Diffstat (limited to 'babeld/neighbour.c')
-rw-r--r--babeld/neighbour.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/babeld/neighbour.c b/babeld/neighbour.c
index 43da8e09..f360b891 100644
--- a/babeld/neighbour.c
+++ b/babeld/neighbour.c
@@ -217,13 +217,13 @@ reset_txcost(struct neighbour *neigh)
delay = timeval_minus_msec(&babel_now, &neigh->ihu_time);
- if(neigh->ihu_interval > 0 && delay < neigh->ihu_interval * 10 * 3)
+ if(neigh->ihu_interval > 0 && delay < neigh->ihu_interval * 10U * 3U)
return 0;
/* If we're losing a lot of packets, we probably lost an IHU too */
if(delay >= 180000 || (neigh->reach & 0xFFF0) == 0 ||
(neigh->ihu_interval > 0 &&
- delay >= neigh->ihu_interval * 10 * 10)) {
+ delay >= neigh->ihu_interval * 10U * 10U)) {
neigh->txcost = INFINITY;
neigh->ihu_time = babel_now;
return 1;
@@ -266,9 +266,9 @@ check_neighbours()
update_neighbour_metric(neigh, changed);
if(neigh->hello_interval > 0)
- msecs = MIN(msecs, neigh->hello_interval * 10);
+ msecs = MIN(msecs, neigh->hello_interval * 10U);
if(neigh->ihu_interval > 0)
- msecs = MIN(msecs, neigh->ihu_interval * 10);
+ msecs = MIN(msecs, neigh->ihu_interval * 10U);
neigh = neigh->next;
}