summaryrefslogtreecommitdiff
path: root/libavutil/tree.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-05-09 23:00:46 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-05-09 23:00:46 +0000
commit9c5a4ea28c70d040ded329480ae93e94b389515c (patch)
tree0084b08644a75806a6d1d032bd04ad16858f7244 /libavutil/tree.h
parentf8c0692d8e3bd27ed096451f14c5b93d2dab6710 (diff)
Add missing '*' to av_tree_insert() doxy.
Originally committed as revision 18775 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/tree.h')
-rw-r--r--libavutil/tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/tree.h b/libavutil/tree.h
index e6803f8a60..b26dd9b000 100644
--- a/libavutil/tree.h
+++ b/libavutil/tree.h
@@ -71,7 +71,7 @@ void *av_tree_find(const struct AVTreeNode *root, void *key, int (*cmp)(void *ke
* }
*
* @return If no insertion happened, the found element; if an insertion or
- removal happened, then either key or NULL will be returned.
+ * removal happened, then either key or NULL will be returned.
* Which one it is depends on the tree state and the implementation. You
* should make no assumptions that it's one or the other in the code.
*/