summaryrefslogtreecommitdiffstats
path: root/sys/netinet
diff options
context:
space:
mode:
authorrrs <rrs@FreeBSD.org>2007-12-04 14:47:39 +0000
committerrrs <rrs@FreeBSD.org>2007-12-04 14:47:39 +0000
commita6029f7726f2b29336269180576274ce8e7255d4 (patch)
tree5befa0180b8dfb7a916aa3104f8e5e4b71cf7ee8 /sys/netinet
parentf08a32ba977f8e5d918b36b60dfa44c4689e5c70 (diff)
downloadFreeBSD-src-a6029f7726f2b29336269180576274ce8e7255d4.zip
FreeBSD-src-a6029f7726f2b29336269180576274ce8e7255d4.tar.gz
- 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
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/sctp_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/sctp_output.c b/sys/netinet/sctp_output.c
index ce6a7b8..d648d18 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;
OpenPOWER on IntegriCloud