From 8b6dccee610b6308b4247351a5b013dd09aa9b6f Mon Sep 17 00:00:00 2001 From: Kip Macy Date: Sat, 20 Jun 2009 19:09:41 +0000 Subject: [PATCH] fix typo in conditional --- sys/dev/cxgb/cxgb_sge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/cxgb/cxgb_sge.c b/sys/dev/cxgb/cxgb_sge.c index d1ad3de0647..fe9ae706ed8 100644 --- a/sys/dev/cxgb/cxgb_sge.c +++ b/sys/dev/cxgb/cxgb_sge.c @@ -711,7 +711,7 @@ refill_fl(adapter_t *sc, struct sge_fl *q, int n) cl, q->buf_size, refill_fl_cb, &cb_arg, 0); if (err != 0 || cb_arg.error) { - if (q->zone = zone_pack) + if (q->zone == zone_pack) uma_zfree(q->zone, cl); m_free(m); goto done;