- 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
This commit is contained in:
rrs 2007-12-04 14:47:39 +00:00
parent f08a32ba97
commit a6029f7726

View File

@ -10959,7 +10959,7 @@ sctp_lower_sosend(struct socket *so,
int free_cnt_applied = 0; int free_cnt_applied = 0;
int un_sent = 0; int un_sent = 0;
int now_filled = 0; int now_filled = 0;
int inqueue_bytes = 0; unsigned int inqueue_bytes = 0;
struct sctp_block_entry be; struct sctp_block_entry be;
struct sctp_inpcb *inp; struct sctp_inpcb *inp;
struct sctp_tcb *stcb = NULL; struct sctp_tcb *stcb = NULL;