Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/common/lib/libprop Fix the previous fix - there's only one _...



details:   https://anonhg.NetBSD.org/src/rev/807d6d5c79d9
branches:  trunk
changeset: 346140:807d6d5c79d9
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Tue Jun 28 06:47:35 2016 +0000

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

diffstat:

 common/lib/libprop/prop_number.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 18a6397e2f69 -r 807d6d5c79d9 common/lib/libprop/prop_number.c
--- a/common/lib/libprop/prop_number.c  Tue Jun 28 05:21:15 2016 +0000
+++ b/common/lib/libprop/prop_number.c  Tue Jun 28 06:47:35 2016 +0000
@@ -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 @@
         * 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);



Home | Main Index | Thread Index | Old Index