From c03593e81d924e65de0f28ae69b452ddd2052757 Mon Sep 17 00:00:00 2001 From: Georgy Borodin Date: Mon, 11 Dec 2023 01:44:42 +0100 Subject: vppinfra: fix bracket balance fix bracket balance in pool_put_will_expand Type: fix Fixes: 66d4cb5a217d556aa7bd2471f02a39badb6d5cd2 Change-Id: I921366c0898cca39cc728b7c7ef4c4c725c6b87d Signed-off-by: Georgy Borodin --- src/vppinfra/pool.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vppinfra/pool.h b/src/vppinfra/pool.h index 1a414aef65f..07c9269c6d8 100644 --- a/src/vppinfra/pool.h +++ b/src/vppinfra/pool.h @@ -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 -- cgit 1.2.3-korg