diff options
Diffstat (limited to 'usr.sbin/ppp/link.c')
-rw-r--r-- | usr.sbin/ppp/link.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ppp/link.c b/usr.sbin/ppp/link.c index 1667e8a8b661..dc5507d7278d 100644 --- a/usr.sbin/ppp/link.c +++ b/usr.sbin/ppp/link.c @@ -118,7 +118,7 @@ link_DeleteQueue(struct link *l) size_t link_QueueLen(struct link *l) { - int i; + unsigned i; size_t len; for (i = 0, len = 0; i < LINK_QUEUES(l); i++) @@ -130,7 +130,7 @@ link_QueueLen(struct link *l) size_t link_QueueBytes(struct link *l) { - int i; + unsigned i; size_t len, bytes; struct mbuf *m; @@ -257,7 +257,7 @@ link_PushPacket(struct link *l, struct mbuf *bp, struct bundle *b, int pri, * packet (as we do with ``pull''s). */ - if(pri < 0 || pri >= LINK_QUEUES(l)) + if(pri < 0 || (unsigned)pri >= LINK_QUEUES(l)) pri = 0; bp->priv = 0; /* Adjusted by the async layer ! */ @@ -372,7 +372,7 @@ static const struct { static void Despatch(struct bundle *bundle, struct link *l, struct mbuf *bp, u_short proto) { - int f; + unsigned f; for (f = 0; f < DSIZE; f++) if (despatcher[f].proto == proto) { |