summaryrefslogtreecommitdiff
path: root/usr/src/common/avl
diff options
context:
space:
mode:
authornd150628 <none@none>2006-10-03 15:01:10 -0700
committernd150628 <none@none>2006-10-03 15:01:10 -0700
commit5ad820458efd0fdb914baff9c1447c22b819fa23 (patch)
tree0986cce9a68a564167dded13501576679a4b94f3 /usr/src/common/avl
parenta985e5786d4eb44e83b59c9c7e38bc77e12fec47 (diff)
downloadillumos-gate-5ad820458efd0fdb914baff9c1447c22b819fa23.tar.gz
6463348 ZFS code could be more portable
Diffstat (limited to 'usr/src/common/avl')
-rw-r--r--usr/src/common/avl/avl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/common/avl/avl.c b/usr/src/common/avl/avl.c
index 7e035b8580..7403e81301 100644
--- a/usr/src/common/avl/avl.c
+++ b/usr/src/common/avl/avl.c
@@ -261,7 +261,7 @@ avl_find(avl_tree_t *tree, void *value, avl_index_t *where)
if (diff == 0) {
#ifdef DEBUG
if (where != NULL)
- *where = NULL;
+ *where = 0;
#endif
return (AVL_NODE2DATA(node, off));
}