diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2009-03-30 14:24:16 +0000 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2009-03-30 14:24:16 +0000 |
commit | ec3649530f2aba3b23ce0bd2a26567539ad57fe7 (patch) | |
tree | ea5bd78aa8751e15c307905395e9e7aea143d23c /sapi | |
parent | 714e40766778213cb3b17c1f8129334d34ce23c9 (diff) | |
download | php-git-ec3649530f2aba3b23ce0bd2a26567539ad57fe7.tar.gz |
MFH: Fixed compiler warning
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/isapi/php5isapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/isapi/php5isapi.c b/sapi/isapi/php5isapi.c index 61af8ff41f..e2afc0a744 100644 --- a/sapi/isapi/php5isapi.c +++ b/sapi/isapi/php5isapi.c @@ -215,7 +215,7 @@ static int sapi_isapi_ub_write(const char *str, uint str_length TSRMLS_DC) } -static int sapi_isapi_header_handler(sapi_header_struct *sapi_header, sapi_headers_struct *sapi_headers TSRMLS_DC) +static int sapi_isapi_header_handler(sapi_header_struct *sapi_header, sapi_header_op_enum op, sapi_headers_struct *sapi_headers TSRMLS_DC) { return SAPI_HEADER_ADD; } |