diff options
author | Ryan Bloom <rbb@apache.org> | 2001-02-11 01:10:30 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-02-11 01:10:30 +0100 |
commit | 69f1ea01a9964e1cb0914743c73ba9dcf4e4596d (patch) | |
tree | f8e1ebf117dcf30136b50d5215f2478d269bc994 /modules | |
parent | clean up more warnings and link problems after the header file (diff) | |
download | apache2-69f1ea01a9964e1cb0914743c73ba9dcf4e4596d.tar.xz apache2-69f1ea01a9964e1cb0914743c73ba9dcf4e4596d.zip |
Fix a warning when compiling with GPROF
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88076 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/http/http_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 6ad101bca5..3113a8dd33 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -1138,7 +1138,7 @@ static const char *set_access_name(cmd_parms *cmd, void *dummy, } #ifdef GPROF -static const char *set_gprof_dir(cmd_parms *cmd, void *dummy, char *arg) +static const char *set_gprof_dir(cmd_parms *cmd, void *dummy, const char *arg) { void *sconf = cmd->server->module_config; core_server_config *conf = ap_get_module_config(sconf, &core_module); |