fix up a whitespace screwup I made.

This commit is contained in:
Julian Elischer 1999-11-18 01:23:06 +00:00
parent e1a0be5f8c
commit 1815eed869
1 changed files with 2 additions and 2 deletions

View File

@ -262,13 +262,13 @@ union mcluster {
}
#define MCLFREE1(p) \
do { \
do { \
if (--mclrefcnt[mtocl(p)] == 0) { \
((union mcluster *)(p))->mcl_next = mclfree; \
mclfree = (union mcluster *)(p); \
mbstat.m_clfree++; \
} \
} while (0)
} while (0)
#define MCLFREE(p) \
MBUFLOCK( \