changeset 258:e5290a4c4ef4 libavutil

Revert previous commit that contained an unrelated hunk.
author diego
date Tue, 27 Feb 2007 00:11:14 +0000
parents 7e0fa666b0d3
children 2498a8c0c832
files Makefile tree.h
diffstat 2 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Mon Feb 26 22:59:16 2007 +0000
+++ b/Makefile	Tue Feb 27 00:11:14 2007 +0000
@@ -24,7 +24,9 @@
           random.h
 
 NAME=avutil
+ifeq ($(BUILD_SHARED),yes)
 LIBVERSION=$(LAVUVERSION)
 LIBMAJOR=$(LAVUMAJOR)
+endif
 
 include ../common.mak
--- a/tree.h	Mon Feb 26 22:59:16 2007 +0000
+++ b/tree.h	Tue Feb 27 00:11:14 2007 +0000
@@ -41,10 +41,10 @@
  *              root node can change during insertions, this is required to
  *              keep the tree balanced
  *
- * @return If no insertion happened, the found element.
- *         If an insertion happened, then either key or NULL is 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).
+ * @return if no insertion happened, the found element
+ *         if a insertion happened, then either key or NULL is returned (which it is
+ *         depends on the tree state and the implemenattion, you should make no
+ *         asumtations that its one or the other in code)
  */
 void *av_tree_insert(struct AVTreeNode **rootp, void *key, int (*cmp)(void *key, const void *b));
 void av_tree_destroy(struct AVTreeNode *t);