diff options
author | Doug MacEachern <dougm@apache.org> | 2001-02-22 09:17:41 +0100 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2001-02-22 09:17:41 +0100 |
commit | d1125529fa9108e777906ab15a33cb2e8e40f60f (patch) | |
tree | 95a7bf79e264b803b965a5b65286ce9aa19b5309 /include/http_config.h | |
parent | avoid c++ keywords (diff) | |
download | apache2-d1125529fa9108e777906ab15a33cb2e8e40f60f.tar.xz apache2-d1125529fa9108e777906ab15a33cb2e8e40f60f.zip |
server_rec* -> server_rec * (sorry for nit, C::Scan made me doit)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88273 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | include/http_config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http_config.h b/include/http_config.h index 14cb3abb27..1ccc10a5b0 100644 --- a/include/http_config.h +++ b/include/http_config.h @@ -789,7 +789,7 @@ AP_DECLARE(void) ap_show_modules(void); * @return The setup server_rec list. * @deffunc server_rec *ap_read_config(process_rec *process, apr_pool_t *temp_pool, const char *config_name, ap_directive_t **conftree) */ -AP_DECLARE(server_rec*) ap_read_config(process_rec *process, apr_pool_t *temp_pool, const char *config_name, ap_directive_t **conftree); +AP_DECLARE(server_rec *) ap_read_config(process_rec *process, apr_pool_t *temp_pool, const char *config_name, ap_directive_t **conftree); /** * Run all post config hooks for loaded modules. |