aboutsummaryrefslogtreecommitdiffstats
path: root/src/vppinfra/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vppinfra/hash.c')
-rw-r--r--src/vppinfra/hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vppinfra/hash.c b/src/vppinfra/hash.c
index c7774bb87ef..63dab989852 100644
--- a/src/vppinfra/hash.c
+++ b/src/vppinfra/hash.c
@@ -1003,7 +1003,7 @@ hash_bytes (void *v)
if (!v)
return 0;
- bytes = vec_capacity (v, hash_header_bytes (v));
+ bytes = vec_mem_size (v, hash_header_bytes (v));
for (i = 0; i < hash_capacity (v); i++)
{
@@ -1013,7 +1013,7 @@ hash_bytes (void *v)
if (h->log2_pair_size > 0)
bytes += 1 << indirect_pair_get_log2_bytes (&p->indirect);
else
- bytes += vec_capacity (p->indirect.pairs, 0);
+ bytes += vec_mem_size (p->indirect.pairs, 0);
}
}
return bytes;