Fix KASSERT argument type.

This commit is contained in:
Alexander V. Chernikov 2014-10-10 18:57:12 +00:00
parent d699ee2dc9
commit 5f8ad2bd82

View File

@ -3185,7 +3185,7 @@ ipfw_objhash_bitmap_alloc(uint32_t items, void **idx, int *pblocks)
u_long *idx_mask;
KASSERT((items % BLOCK_ITEMS) == 0,
("bitmask size needs to power of 2 and greater or equal to %lu",
("bitmask size needs to power of 2 and greater or equal to %zu",
BLOCK_ITEMS));
max_blocks = items / BLOCK_ITEMS;