From: Ilia Alshanetsky Date: Tue, 28 Jan 2003 17:46:47 +0000 (+0000) Subject: Fixed compile warning. X-Git-Tag: php-4.3.2RC1~386 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d7d365d3cb74fb0b0de565b44a9e9c917c5846c;p=php Fixed compile warning. --- diff --git a/ext/hyperwave/hw.c b/ext/hyperwave/hw.c index a80587b2e0..0908abd7ab 100644 --- a/ext/hyperwave/hw.c +++ b/ext/hyperwave/hw.c @@ -2882,8 +2882,7 @@ PHP_FUNCTION(hw_new_document_from_file) convert_to_string_ex(arg1); convert_to_string_ex(arg2); - stream = php_stream_open_wrapper(Z_STRVAL_PP(arg2), "r", use_include_path|ENFORCE_SAFE_MODE|REPORT_ERRORS, - NULL TSRMLS_CC); + stream = php_stream_open_wrapper(Z_STRVAL_PP(arg2), "r", use_include_path|ENFORCE_SAFE_MODE|REPORT_ERRORS, NULL); if (stream == NULL) { RETURN_FALSE;