- 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:
Randall Stewart 2007-12-04 14:47:39 +00:00
parent 9f22f50039
commit 0e81d2ed7a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=174258

View File

@ -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;