summaryrefslogtreecommitdiff
path: root/tables
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2004-04-18 17:07:43 +0000
committerRyan Bloom <rbb@apache.org>2004-04-18 17:07:43 +0000
commita2ecf7b0d590523550d1680ecceb42d6a5f54be5 (patch)
tree625e256a1372d54783c3e4cb0dca4bc73bbe0798 /tables
parent5dec83de542d3d4c25522f3caf84fa6f3ac9e352 (diff)
downloadapr-a2ecf7b0d590523550d1680ecceb42d6a5f54be5.tar.gz
Fix the compile errors. I thought I compiled this after making my
changes to the patch, but I must have just re-compiled the test programs. Submitted by: Andr� Malo <nd@perlig.de> git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@65068 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tables')
-rw-r--r--tables/apr_hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tables/apr_hash.c b/tables/apr_hash.c
index 153442188..d7b73bdb5 100644
--- a/tables/apr_hash.c
+++ b/tables/apr_hash.c
@@ -102,7 +102,7 @@ APR_DECLARE(apr_hash_t *) apr_hash_make(apr_pool_t *pool)
APR_DECLARE(apr_hash_t *) apr_hash_make_custom(apr_pool_t *pool,
apr_hashfunc_t hash_func)
{
- ht = apr_hash_make(p);
+ apr_hash_t *ht = apr_hash_make(pool);
ht->hash_func = hash_func;
return ht;
}