diff options
author | Doug MacEachern <dougm@php.net> | 2001-12-07 05:34:44 +0000 |
---|---|---|
committer | Doug MacEachern <dougm@php.net> | 2001-12-07 05:34:44 +0000 |
commit | 1b35f3bcfc5c873fea881876b0d3043e93038bcc (patch) | |
tree | 82c93ecfc378afb5b3af10576097ce5ecc3e1a16 /sapi | |
parent | 27018c0ff0d2493bbfbe8e0815db918edde9044b (diff) | |
download | php-git-1b35f3bcfc5c873fea881876b0d3043e93038bcc.tar.gz |
apr_table_elts are now const
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/apache2filter/php_functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache2filter/php_functions.c b/sapi/apache2filter/php_functions.c index a49e4a70ae..37fece2c7a 100644 --- a/sapi/apache2filter/php_functions.c +++ b/sapi/apache2filter/php_functions.c @@ -115,7 +115,7 @@ PHP_FUNCTION(apache_lookup_uri) PHP_FUNCTION(getallheaders) { php_struct *ctx; - apr_array_header_t *arr; + const apr_array_header_t *arr; char *key, *val; if (array_init(return_value) == FAILURE) { |