]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Oops. item_size and item_num are pointers. Thanks Ruediger Pluem.
authorJean-Frederic Clere <jfclere@apache.org>
Wed, 26 Jul 2006 14:57:25 +0000 (14:57 +0000)
committerJean-Frederic Clere <jfclere@apache.org>
Wed, 26 Jul 2006 14:57:25 +0000 (14:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/httpd-proxy-scoreboard@425752 13f79535-47bb-0310-9956-ffa450edef68

modules/mem/mod_plainmem.c

index 612879b3fa1e55e4ba04eb8113448d6ab8bbb523..da1b93cb53374d69ad381bb856f7d29843ad91ef 100644 (file)
@@ -99,7 +99,7 @@ static apr_status_t ap_slotmem_create(ap_slotmem_t **new, const char *name, apr_
     return APR_SUCCESS;
 }
 
-static apr_status_t ap_slotmem_attach(ap_slotmem_t **new, const char *name, apr_size_t item_size, int item_num, apr_pool_t *pool)
+static apr_status_t ap_slotmem_attach(ap_slotmem_t **new, const char *name, apr_size_t *item_size, int *item_num, apr_pool_t *pool)
 {
     void *slotmem = NULL;
     ap_slotmem_t *res;