- 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:
parent
f08a32ba97
commit
a6029f7726
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user