diff options
author | Rosen Penev | 2020-06-03 15:50:19 -0700 |
---|---|---|
committer | Nikias Bassen | 2020-12-30 02:54:57 +0100 |
commit | 22988d874570c35251076f9edc1cd3c99ecb6785 (patch) | |
tree | 725a1119380e8745aa92d1ae53ce627c337410c5 /common/collection.c | |
parent | e7168f30e6fdf0a1f9cffdc9252f52d45e5a59ef (diff) | |
download | libusbmuxd-22988d874570c35251076f9edc1cd3c99ecb6785.tar.gz libusbmuxd-22988d874570c35251076f9edc1cd3c99ecb6785.tar.bz2 |
Add parentheses to macro arguments
[clang-tidy] Found with bugprone-macro-parentheses
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'common/collection.c')
-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 |