summaryrefslogtreecommitdiffstats
path: root/sys/netinet/sctp_pcb.c
diff options
context:
space:
mode:
authorjb <jb@FreeBSD.org>2006-11-04 05:39:39 +0000
committerjb <jb@FreeBSD.org>2006-11-04 05:39:39 +0000
commiteea32515548a614ccc783cdd01451caa38233e35 (patch)
treeb28644a5e0e2fb5510c4a6df50dee9e5f9c468e3 /sys/netinet/sctp_pcb.c
parent4a565ec80c0a6f80e8dbbe5fecc2fe7121e25fb1 (diff)
downloadFreeBSD-src-eea32515548a614ccc783cdd01451caa38233e35.zip
FreeBSD-src-eea32515548a614ccc783cdd01451caa38233e35.tar.gz
Remove a bogus cast in an attempt to fix the tinderbox builds on
lots of arches.
Diffstat (limited to 'sys/netinet/sctp_pcb.c')
-rw-r--r--sys/netinet/sctp_pcb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/sctp_pcb.c b/sys/netinet/sctp_pcb.c
index 1a7e0ac..cc17c55 100644
--- a/sys/netinet/sctp_pcb.c
+++ b/sys/netinet/sctp_pcb.c
@@ -2206,8 +2206,8 @@ sctp_inpcb_free(struct sctp_inpcb *inp, int immediate, int from)
sp = TAILQ_LAST(&((asoc->asoc.locked_on_sending)->outqueue),
sctp_streamhead);
if (sp == NULL) {
- printf("Error, sp is NULL, locked on sending is %ps strm:%d\n",
- (u_int)asoc->asoc.locked_on_sending,
+ printf("Error, sp is NULL, locked on sending is %p strm:%d\n",
+ asoc->asoc.locked_on_sending,
asoc->asoc.locked_on_sending->stream_no);
} else {
if ((sp->length == 0) && (sp->msg_is_complete == 0))
OpenPOWER on IntegriCloud