From 7d4bad8bc3714819743b5e00054b7f9dcb79072f Mon Sep 17 00:00:00 2001 From: harti Date: Wed, 25 May 2005 13:33:58 +0000 Subject: Add a missing comma which prevents compilation with debugging enabled. Spotted by: Donatas --- sys/dev/hatm/if_hatm_tx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/hatm/if_hatm_tx.c b/sys/dev/hatm/if_hatm_tx.c index b084b9e..3f0e66c 100644 --- a/sys/dev/hatm/if_hatm_tx.c +++ b/sys/dev/hatm/if_hatm_tx.c @@ -94,7 +94,7 @@ __FBSDID("$FreeBSD$"); #define hatm_get_txmbuf(SC) \ do { \ if (++sc->txmbuf > 20000) \ - DBG(sc, TX ("txmbuf %u", sc->txmbuf)); \ + DBG(sc, TX, ("txmbuf %u", sc->txmbuf)); \ else if (sc->txmbuf == 1) \ DBG(sc, TX, ("txmbuf leaves 0")); \ } while (0) -- cgit v1.1