trivial: whitespace

Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
Kevin Shanahan 2013-01-14 18:47:25 +10:30
parent 7aea445a46
commit 4d9c4ecbb7

@ -533,8 +533,8 @@ Mod_NextLeafBit(const leafbits_t *leafbits, int leafnum, leafblock_t *check)
* Macro to iterate over just the ones in the leaf bit array
*/
#define foreach_leafbit(leafbits, leafnum, check) \
for ( check = 0, leafnum = Mod_NextLeafBit(leafbits, -1, &check); \
leafnum < leafbits->numleafs; \
for ( check = 0, leafnum = Mod_NextLeafBit(leafbits, -1, &check); \
leafnum < leafbits->numleafs; \
leafnum = Mod_NextLeafBit(leafbits, leafnum, &check) )
/* 'OR' the bits of src into dst */