Fix compile error due to missing parenthesis in r338372

Approved by:	re (gjb)
This commit is contained in:
Stephen Hurd 2018-08-29 16:21:34 +00:00
parent a520f8b6fe
commit bc0e855bd9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=338373

View File

@ -3636,7 +3636,7 @@ iflib_txq_drain(struct ifmp_ring *r, uint32_t cidx, uint32_t pidx)
if (__predict_false(ctx->ifc_flags & IFC_QFLUSH)) {
DBG_COUNTER_INC(txq_drain_flushing);
for (i = 0; i < avail; i++) {
if (__predict_true(r->items[(cidx + i) & (r->size-1)] != (void *)txq)
if (__predict_true(r->items[(cidx + i) & (r->size-1)] != (void *)txq))
m_free(r->items[(cidx + i) & (r->size-1)]);
r->items[(cidx + i) & (r->size-1)] = NULL;
}