diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/collection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/collection.c b/common/collection.c index 92bd645..8a2fe72 100644 --- a/common/collection.c +++ b/common/collection.c @@ -31,7 +31,7 @@ #undef NDEBUG // we need to make sure we still get assertions because we can't handle memory allocation errors #include <assert.h> -#define INIT_NULL(addr, count) { unsigned int i_ = 0; for (i_ = 0; i_ < count; i_++) ((void**)addr)[i_] = NULL; } +#define INIT_NULL(addr, count) { unsigned int i_ = 0; for (i_ = 0; i_ < (count); i_++) ((void**)(addr))[i_] = NULL; } #define CAPACITY_STEP 8 |