Module Name:    src
Committed By:   pgoyette
Date:           Tue Jun 28 06:47:35 UTC 2016

Modified Files:
        src/common/lib/libprop: prop_number.c

Log Message:
Fix the previous fix - there's only one _node suffix here!


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/common/lib/libprop/prop_number.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/common/lib/libprop/prop_number.c
diff -u src/common/lib/libprop/prop_number.c:1.29 src/common/lib/libprop/prop_number.c:1.30
--- src/common/lib/libprop/prop_number.c:1.29	Tue Jun 28 05:21:15 2016
+++ src/common/lib/libprop/prop_number.c	Tue Jun 28 06:47:35 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: prop_number.c,v 1.29 2016/06/28 05:21:15 pgoyette Exp $	*/
+/*	$NetBSD: prop_number.c,v 1.30 2016/06/28 06:47:35 pgoyette Exp $	*/
 
 /*-
  * Copyright (c) 2006 The NetBSD Foundation, Inc.
@@ -308,7 +308,7 @@ _prop_number_alloc(const struct _prop_nu
 	 * we have to check again if it is in the tree.
 	 */
 	_PROP_MUTEX_LOCK(_prop_number_tree_mutex);
-	opn = rb_tree_find_node_node(&_prop_number_tree, pnv);
+	opn = rb_tree_find_node(&_prop_number_tree, pnv);
 	if (opn != NULL) {
 		prop_object_retain(opn);
 		_PROP_MUTEX_UNLOCK(_prop_number_tree_mutex);

Reply via email to