summaryrefslogtreecommitdiff
path: root/tables
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2004-04-18 17:07:43 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2004-04-18 17:07:43 +0000
commitb76e4b70cb0e18fcc22bd5891e793edba44aa586 (patch)
tree625e256a1372d54783c3e4cb0dca4bc73bbe0798 /tables
parent85d616ecce2ce6c30f9a4a9ef00d3e797e8128b5 (diff)
downloadlibapr-b76e4b70cb0e18fcc22bd5891e793edba44aa586.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: http://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;
}