Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/common/lib/libprop Missed a couple of function-call renames ...
details: https://anonhg.NetBSD.org/src/rev/18a6397e2f69
branches: trunk
changeset: 346139:18a6397e2f69
user: pgoyette <pgoyette%NetBSD.org@localhost>
date: Tue Jun 28 05:21:15 2016 +0000
description:
Missed a couple of function-call renames in previous
diffstat:
common/lib/libprop/prop_dictionary.c | 6 +++---
common/lib/libprop/prop_number.c | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diffs (54 lines):
diff -r 137a4b4441ff -r 18a6397e2f69 common/lib/libprop/prop_dictionary.c
--- a/common/lib/libprop/prop_dictionary.c Tue Jun 28 05:18:11 2016 +0000
+++ b/common/lib/libprop/prop_dictionary.c Tue Jun 28 05:21:15 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: prop_dictionary.c,v 1.40 2016/06/28 05:18:11 pgoyette Exp $ */
+/* $NetBSD: prop_dictionary.c,v 1.41 2016/06/28 05:21:15 pgoyette Exp $ */
/*-
* Copyright (c) 2006, 2007 The NetBSD Foundation, Inc.
@@ -293,7 +293,7 @@
* we just retain it and return it.
*/
_PROP_MUTEX_LOCK(_prop_dict_keysym_tree_mutex);
- opdk = rb_tree_find(&_prop_dict_keysym_tree, key);
+ opdk = rb_tree_find_node(&_prop_dict_keysym_tree, key);
if (opdk != NULL) {
prop_object_retain(opdk);
_PROP_MUTEX_UNLOCK(_prop_dict_keysym_tree_mutex);
@@ -329,7 +329,7 @@
* we have to check again if it is in the tree.
*/
_PROP_MUTEX_LOCK(_prop_dict_keysym_tree_mutex);
- opdk = rb_tree_find(&_prop_dict_keysym_tree, key);
+ opdk = rb_tree_find_node(&_prop_dict_keysym_tree, key);
if (opdk != NULL) {
prop_object_retain(opdk);
_PROP_MUTEX_UNLOCK(_prop_dict_keysym_tree_mutex);
diff -r 137a4b4441ff -r 18a6397e2f69 common/lib/libprop/prop_number.c
--- a/common/lib/libprop/prop_number.c Tue Jun 28 05:18:11 2016 +0000
+++ b/common/lib/libprop/prop_number.c Tue Jun 28 05:21:15 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: prop_number.c,v 1.28 2016/06/28 05:18:11 pgoyette Exp $ */
+/* $NetBSD: prop_number.c,v 1.29 2016/06/28 05:21:15 pgoyette Exp $ */
/*-
* Copyright (c) 2006 The NetBSD Foundation, Inc.
@@ -283,7 +283,7 @@
* we just retain it and return it.
*/
_PROP_MUTEX_LOCK(_prop_number_tree_mutex);
- opn = rb_tree_find(&_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);
@@ -308,7 +308,7 @@
* we have to check again if it is in the tree.
*/
_PROP_MUTEX_LOCK(_prop_number_tree_mutex);
- opn = rb_tree_find_node(&_prop_number_tree, pnv);
+ opn = rb_tree_find_node_node(&_prop_number_tree, pnv);
if (opn != NULL) {
prop_object_retain(opn);
_PROP_MUTEX_UNLOCK(_prop_number_tree_mutex);
Home |
Main Index |
Thread Index |
Old Index