aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-31 21:27:49 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-31 21:27:49 +0000
commitcd184d2ed94ac03b65787170f1eb1e219cf1ce9f (patch)
tree94866d6f9a23e58bfd98bdf57f6d5d2027804baf /include
parentae4c0b95f6ff7bf10069f60b678cbec85b0e30be (diff)
Remove references to a debugging parameter that does not exist
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@81418 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/astobj2.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/asterisk/astobj2.h b/include/asterisk/astobj2.h
index cd0324dab..bc2476de4 100644
--- a/include/asterisk/astobj2.h
+++ b/include/asterisk/astobj2.h
@@ -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()