mirror of
https://github.com/apache/httpd.git
synced 2025-12-09 11:41:15 +03:00
Silence a sparse warning about inconsistent indenting + some minor style issues
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1700326 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
6
modules/cache/mod_cache_disk.c
vendored
6
modules/cache/mod_cache_disk.c
vendored
@@ -185,7 +185,8 @@ static apr_status_t file_cache_el_final(disk_cache_conf *conf, disk_cache_file_t
|
|||||||
return rv;
|
return rv;
|
||||||
}
|
}
|
||||||
|
|
||||||
static apr_status_t file_cache_temp_cleanup(void *dummy) {
|
static apr_status_t file_cache_temp_cleanup(void *dummy)
|
||||||
|
{
|
||||||
disk_cache_file_t *file = (disk_cache_file_t *)dummy;
|
disk_cache_file_t *file = (disk_cache_file_t *)dummy;
|
||||||
|
|
||||||
/* clean up the temporary file */
|
/* clean up the temporary file */
|
||||||
@@ -1382,7 +1383,8 @@ static void *create_dir_config(apr_pool_t *p, char *dummy)
|
|||||||
return dconf;
|
return dconf;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void *merge_dir_config(apr_pool_t *p, void *basev, void *addv) {
|
static void *merge_dir_config(apr_pool_t *p, void *basev, void *addv)
|
||||||
|
{
|
||||||
disk_cache_dir_conf *new = (disk_cache_dir_conf *) apr_pcalloc(p, sizeof(disk_cache_dir_conf));
|
disk_cache_dir_conf *new = (disk_cache_dir_conf *) apr_pcalloc(p, sizeof(disk_cache_dir_conf));
|
||||||
disk_cache_dir_conf *add = (disk_cache_dir_conf *) addv;
|
disk_cache_dir_conf *add = (disk_cache_dir_conf *) addv;
|
||||||
disk_cache_dir_conf *base = (disk_cache_dir_conf *) basev;
|
disk_cache_dir_conf *base = (disk_cache_dir_conf *) basev;
|
||||||
|
|||||||
Reference in New Issue
Block a user