diff options
author | Damjan Marion <damarion@cisco.com> | 2022-03-17 18:29:32 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2022-03-18 13:16:30 +0000 |
commit | 05563c9a904b6bb862ba783dc3519c8415bf9cf5 (patch) | |
tree | 6243fbfe79969288ad233a45433f74fec75edb08 /src/vppinfra/test_heap.c | |
parent | a4a28f04cb887ee690ccc9f563d06bf74fe18faf (diff) |
vppinfra: deprecate vec_free_h()
vec_free() does the work
Type: refactor
Change-Id: I8a97607c3b2f58d116863642b32b55525dc15d88
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra/test_heap.c')
-rw-r--r-- | src/vppinfra/test_heap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/test_heap.c b/src/vppinfra/test_heap.c index 0fd6bf74245..00c896e5c9a 100644 --- a/src/vppinfra/test_heap.c +++ b/src/vppinfra/test_heap.c @@ -189,7 +189,7 @@ main (int argc, char *argv[]) vec_free (handles); if (fixed_size) - vec_free_h (h, sizeof (heap_header_t)); + vec_free (h); if (verbose) fformat (stderr, "%U\n", format_clib_mem_usage, /* verbose */ 0); |