vppinfra: fix bracket balance

fix bracket balance in pool_put_will_expand

Type: fix
Fixes: 66d4cb5a21
Change-Id: I921366c0898cca39cc728b7c7ef4c4c725c6b87d
Signed-off-by: Georgy Borodin <bor1-go@yandex-team.ru>
This commit is contained in:
Georgy Borodin
2023-12-11 01:44:42 +01:00
committed by Damjan Marion
parent 8263888f46
commit c03593e81d

View File

@ -268,7 +268,8 @@ _pool_put_will_expand (void *p, uword index, uword elt_sz)
return 0;
}
#define pool_put_will_expand(P, E) _pool_put_will_expand (P, (E) - (P), sizeof ((P)[0])
#define pool_put_will_expand(P, E) \
_pool_put_will_expand (P, (E) - (P), sizeof ((P)[0]))
/** Use free bitmap to query whether given element is free. */
static_always_inline int