Skip to content

Commit

Permalink
Fix the previous fix - there's only one _node suffix here!
Browse files Browse the repository at this point in the history
  • Loading branch information
pgoyette committed Jun 28, 2016
1 parent b6ef286 commit 22230d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/lib/libprop/prop_number.c
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -308,7 +308,7 @@ _prop_number_alloc(const struct _prop_number_value *pnv)
* 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);
Expand Down

0 comments on commit 22230d0

Please sign in to comment.