diff options
author | foobar <sniper@php.net> | 2003-09-09 21:38:31 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-09-09 21:38:31 +0000 |
commit | 1aa5bab89c13ccb171022b1af1b8a358c4b35022 (patch) | |
tree | 06c98e738e64d681ea803575596e47c06457847d /sapi/apache/php_apache.c | |
parent | 0c0d3a41d1f21a01f01ea426748b3107c96f9157 (diff) | |
download | php-git-1aa5bab89c13ccb171022b1af1b8a358c4b35022.tar.gz |
Nuke warning
Diffstat (limited to 'sapi/apache/php_apache.c')
-rw-r--r-- | sapi/apache/php_apache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index 10e7e09871..73962f6cc0 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -163,7 +163,7 @@ PHP_FUNCTION(apache_note) */ PHP_MINFO_FUNCTION(apache) { - char *apv = ap_get_server_version(); + char *apv = (char *) ap_get_server_version(); module *modp = NULL; char output_buf[128]; #if !defined(WIN32) && !defined(WINNT) |