summaryrefslogtreecommitdiffstats
path: root/lib/qobj.c
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2017-06-20 00:49:44 +0200
committerQuentin Young <qlyoung@cumulusnetworks.com>2017-07-02 01:18:37 +0200
commitdfd19ccc3a21b18fb09cecff5d87d20a0adbafe3 (patch)
treead5f5e7ebf2912329bebbc8f87303aa71b61d7b5 /lib/qobj.c
parentlib, vtysh: hashtable statistics (diff)
downloadfrr-dfd19ccc3a21b18fb09cecff5d87d20a0adbafe3.tar.xz
frr-dfd19ccc3a21b18fb09cecff5d87d20a0adbafe3.zip
*: update hash_create(), hash_create_size()
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/qobj.c')
-rw-r--r--lib/qobj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/qobj.c b/lib/qobj.c
index 4cf7fbca7..8fa816397 100644
--- a/lib/qobj.c
+++ b/lib/qobj.c
@@ -97,7 +97,7 @@ void qobj_init (void)
if (!nodes)
{
pthread_rwlock_init (&nodes_lock, NULL);
- nodes = hash_create (qobj_key, qobj_cmp);
+ nodes = hash_create (qobj_key, qobj_cmp, NULL);
}
}