summaryrefslogtreecommitdiff
path: root/tests/lib/test_srcdest_table.c
diff options
context:
space:
mode:
authorMartin Winter <mwinter@opensourcerouting.org>2017-07-04 11:58:10 -0700
committerGitHub <noreply@github.com>2017-07-04 11:58:10 -0700
commitc6200b54679f7e65d4a1036cece3d6cb08ccb9c5 (patch)
treee37ad76ba3e69a94e1ebd970c6f4700a99ee23ab /tests/lib/test_srcdest_table.c
parent8186327f3d2a5028b55eab9a04c31b5ccd68afd1 (diff)
parente703a0f3afd3469afdc57994a38245cf2ada4e00 (diff)
Merge pull request #742 from qlyoung/hashstats
Hashtable statistics
Diffstat (limited to 'tests/lib/test_srcdest_table.c')
-rw-r--r--tests/lib/test_srcdest_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/test_srcdest_table.c b/tests/lib/test_srcdest_table.c
index 07f60668e7..792e2696e9 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;
}