diff options
author | Bill Stoddard <stoddard@apache.org> | 2002-08-18 05:23:06 +0200 |
---|---|---|
committer | Bill Stoddard <stoddard@apache.org> | 2002-08-18 05:23:06 +0200 |
commit | b6f3a309b2990982ed54549ef37f18a22bc135e9 (patch) | |
tree | 26761f8462c6cb384e452da27c39e25f288920fe /modules | |
parent | Uuups. Fixed another typo. (diff) | |
download | apache2-b6f3a309b2990982ed54549ef37f18a22bc135e9.tar.xz apache2-b6f3a309b2990982ed54549ef37f18a22bc135e9.zip |
Fix compile break
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96429 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/experimental/cache_cache.c | 8 | ||||
-rw-r--r-- | modules/experimental/cache_cache.h | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/modules/experimental/cache_cache.c b/modules/experimental/cache_cache.c index 4fc027431e..5705572878 100644 --- a/modules/experimental/cache_cache.c +++ b/modules/experimental/cache_cache.c @@ -21,8 +21,8 @@ struct cache_cache_t { long queue_clock; cache_hash_t *ht; cache_pqueue_t *pq; - cache_pqueue_set_priority* set_pri; - cache_pqueue_get_priority* get_pri; + cache_pqueue_set_priority set_pri; + cache_pqueue_get_priority get_pri; cache_cache_inc_frequency *inc_entry; cache_cache_get_size *size_entry; cache_cache_get_key *key_entry; @@ -31,8 +31,8 @@ struct cache_cache_t { CACHE_DECLARE(cache_cache_t *)cache_init(int max_entries, apr_size_t max_size, - cache_pqueue_get_priority *get_pri, - cache_pqueue_set_priority *set_pri, + cache_pqueue_get_priority get_pri, + cache_pqueue_set_priority set_pri, cache_pqueue_getpos get_pos, cache_pqueue_setpos set_pos, cache_cache_inc_frequency *inc_entry, diff --git a/modules/experimental/cache_cache.h b/modules/experimental/cache_cache.h index c6078ac86b..98966a4fbd 100644 --- a/modules/experimental/cache_cache.h +++ b/modules/experimental/cache_cache.h @@ -102,8 +102,8 @@ typedef void cache_cache_free(void *a); */ CACHE_DECLARE(cache_cache_t *)cache_init(int max_entries, apr_size_t max_size, - cache_pqueue_get_priority *get_pri, - cache_pqueue_set_priority *set_pri, + cache_pqueue_get_priority get_pri, + cache_pqueue_set_priority set_pri, cache_pqueue_getpos get_pos, cache_pqueue_setpos set_pos, cache_cache_inc_frequency *inc_entry, |