diff -r 8aac17999e4d -r e2081f502306 usr/src/common/avl/avl.c --- a/usr/src/common/avl/avl.c Fri Oct 30 18:47:17 2009 -0600 +++ b/usr/src/common/avl/avl.c Sun Nov 01 14:14:46 2009 -0800 @@ -19,13 +19,10 @@ * CDDL HEADER END */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved. + * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" - - /* * AVL - generic AVL tree implementation for kernel use * @@ -243,7 +240,7 @@ * "void *" of the found tree node */ void * -avl_find(avl_tree_t *tree, void *value, avl_index_t *where) +avl_find(avl_tree_t *tree, const void *value, avl_index_t *where) { avl_node_t *node; avl_node_t *prev = NULL;