projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e8366f6
)
* lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
author
Eric Blake
<ebb9@byu.net>
Mon, 13 Nov 2006 14:30:13 +0000
(14:30 +0000)
committer
Eric Blake
<ebb9@byu.net>
Mon, 13 Nov 2006 14:30:13 +0000
(14:30 +0000)
element, not its node.
ChangeLog
patch
|
blob
|
history
lib/gl_anytree_oset.h
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index 5609cfc9250d4954300a47f146aef1723fe19e44..a972c63d61ad51b5262af63893ce21370d7fe593 100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-1,3
+1,8
@@
+2006-11-13 Eric Blake <ebb9@byu.net>
+
+ * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
+ element, not its node.
+
2006-11-12 Bruno Haible <bruno@clisp.org>
* gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
diff --git
a/lib/gl_anytree_oset.h
b/lib/gl_anytree_oset.h
index 9945cfc71eb9ba3f45e793656e913487edbc9bfb..b6b50b4bc9bbd731e0284ccc1aa4f4000c9b65a9 100644
(file)
--- a/
lib/gl_anytree_oset.h
+++ b/
lib/gl_anytree_oset.h
@@
-100,7
+100,7
@@
gl_tree_search_atleast (gl_oset_t set,
node = node->left;
}
}
- *eltp = found;
+ *eltp = found
->value
;
return true;
}
}