diff options
author | Dave Barach <dave@barachs.net> | 2020-04-01 16:54:00 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2020-04-01 22:47:07 +0000 |
commit | d7b828f0cf0e21eebc4ae836668db68971225dd1 (patch) | |
tree | 4699083e94f1f62d89944f2626efddc944a44243 /src/vppinfra/test_cuckoo_template.c | |
parent | 0a1e183e5aa45fb0050eb03e1c8ebdb9f426a374 (diff) |
vppinfra: fix vppinfra test code build
Type: fix
Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: I921adae4ad797bf80cfcdb05d2a89ace9183a89a
Diffstat (limited to 'src/vppinfra/test_cuckoo_template.c')
-rw-r--r-- | src/vppinfra/test_cuckoo_template.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/vppinfra/test_cuckoo_template.c b/src/vppinfra/test_cuckoo_template.c index 52af38589c8..9619dc2e802 100644 --- a/src/vppinfra/test_cuckoo_template.c +++ b/src/vppinfra/test_cuckoo_template.c @@ -138,7 +138,8 @@ test_cuckoo (test_main_t * tm) kv.key = tm->keys[i]; kv.value = i + 1; - CV (clib_cuckoo_add_del) (h, &kv, 1 /* is_add */ ); + CV (clib_cuckoo_add_del) (h, &kv, 1 /* is_add */ , + 0 /* overwrite */ ); if (tm->verbose > 1) { @@ -207,7 +208,8 @@ test_cuckoo (test_main_t * tm) kv.key = tm->keys[i]; kv.value = (u64) (i + 1); - rv = CV (clib_cuckoo_add_del) (h, &kv, 0 /* is_add */ ); + rv = CV (clib_cuckoo_add_del) (h, &kv, 0 /* is_add */ , + 0 /* dont_overwrite */ ); if (rv < 0) clib_warning ("delete key %lld not ok but should be", tm->keys[i]); |