Add a missing comma which prevents compilation with debugging enabled.

Spotted by:	Donatas <donatas@lrtc.net>
This commit is contained in:
Hartmut Brandt 2005-05-25 13:33:58 +00:00
parent 0f2bbe5ba4
commit 07d9fa4c2e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=146617

View file

@ -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)