diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vppinfra/pool.h | 3 |
1 files changed, 2 insertions, 1 deletions
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 |