From: Bradley Nicholes Date: Tue, 8 Feb 2005 19:41:15 +0000 (+0000) Subject: Make the function declaration match the prototype X-Git-Tag: 2.1.3~51 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f193418fa8ea6f88a4ebb118862684f1bbd4adbe;p=apache Make the function declaration match the prototype git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@152927 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/mod_disk_cache.c b/modules/cache/mod_disk_cache.c index d681782f6d..e6a36716b8 100644 --- a/modules/cache/mod_disk_cache.c +++ b/modules/cache/mod_disk_cache.c @@ -249,7 +249,7 @@ static int file_cache_recall_mydata(apr_file_t *fd, cache_info *info, * Hook and mod_cache callback functions */ #define AP_TEMPFILE "/aptmpXXXXXX" -static int create_entity(cache_handle_t *h, request_rec *r, const char *key) +static int create_entity(cache_handle_t *h, request_rec *r, const char *key, apr_off_t len) { disk_cache_conf *conf = ap_get_module_config(r->server->module_config, &disk_cache_module);