Fix the KASSERT format string arguments after r303507.

This commit is contained in:
Mark Johnston 2016-07-29 20:48:42 +00:00
parent a3c0b052b7
commit 3b3e6d882f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=303508

View File

@ -668,7 +668,8 @@ sdp_rx_irq(struct ib_cq *cq, void *cq_context)
struct sdp_sock *ssk;
ssk = cq_context;
KASSERT(cq == ssk->rx_ring.cq, ("%s: mismatched cq on %p", ssk));
KASSERT(cq == ssk->rx_ring.cq,
("%s: mismatched cq on %p", __func__, ssk));
SDPSTATS_COUNTER_INC(rx_int_count);