diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-06-20 00:49:44 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-07-02 01:18:37 +0200 |
commit | dfd19ccc3a21b18fb09cecff5d87d20a0adbafe3 (patch) | |
tree | ad5f5e7ebf2912329bebbc8f87303aa71b61d7b5 /tests/lib | |
parent | lib, vtysh: hashtable statistics (diff) | |
download | frr-dfd19ccc3a21b18fb09cecff5d87d20a0adbafe3.tar.xz frr-dfd19ccc3a21b18fb09cecff5d87d20a0adbafe3.zip |
*: update hash_create(), hash_create_size()
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/test_srcdest_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/test_srcdest_table.c b/tests/lib/test_srcdest_table.c index 07f60668e..792e2696e 100644 --- a/tests/lib/test_srcdest_table.c +++ b/tests/lib/test_srcdest_table.c @@ -140,7 +140,7 @@ test_state_new(void) rv->table = srcdest_table_init(); assert(rv->table); - rv->log = hash_create(log_key, log_cmp); + rv->log = hash_create(log_key, log_cmp, NULL); return rv; } |