From a6029f7726f2b29336269180576274ce8e7255d4 Mon Sep 17 00:00:00 2001 From: rrs Date: Tue, 4 Dec 2007 14:47:39 +0000 Subject: [PATCH] - Opps, signedness issue with one of the new var's (this is an issue mainly in apple but with the right -Wall it could effect us too). MFC after: 1 week --- sys/netinet/sctp_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/sctp_output.c b/sys/netinet/sctp_output.c index ce6a7b85970d..d648d1832644 100644 --- a/sys/netinet/sctp_output.c +++ b/sys/netinet/sctp_output.c @@ -10959,7 +10959,7 @@ sctp_lower_sosend(struct socket *so, int free_cnt_applied = 0; int un_sent = 0; int now_filled = 0; - int inqueue_bytes = 0; + unsigned int inqueue_bytes = 0; struct sctp_block_entry be; struct sctp_inpcb *inp; struct sctp_tcb *stcb = NULL;