]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Remove references to a debugging parameter that does not exist
authorRussell Bryant <russell@russellbryant.com>
Fri, 31 Aug 2007 21:27:49 +0000 (21:27 +0000)
committerRussell Bryant <russell@russellbryant.com>
Fri, 31 Aug 2007 21:27:49 +0000 (21:27 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@81418 65c4cc65-6c06-0410-ace0-fbb531ad65f3

include/asterisk/astobj2.h

index cd0324dab1d9a61bdf1ad4ca4e662aff73692b80..bc2476de4c99eff5f73f093b43355d6d340a1594 100644 (file)
@@ -89,7 +89,7 @@ parameters. At the moment, this is done as follows:
 
     ao2_container *c;
 
-    c = ao2_container_alloc(MAX_BUCKETS, my_hash_fn, my_cmp_fn, my_dump_fn);
+    c = ao2_container_alloc(MAX_BUCKETS, my_hash_fn, my_cmp_fn);
 
 where
 - MAX_BUCKETS is the number of buckets in the hash table,
@@ -98,7 +98,6 @@ where
   by the container's code);
 - my_cmp_fn() is the default comparison function used when doing
   searches on the container,
-- my_dump_fn() is a helper function used only for debugging.
 
 A container knows little or nothing about the object itself,
 other than the fact that it has been created by ao2_alloc()