From: Ilia Alshanetsky Date: Fri, 24 Jan 2003 16:39:49 +0000 (+0000) Subject: Fixed compile warning. X-Git-Tag: PHP_5_0_dev_before_13561_fix~56 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2162b32b1f19e7603f1522c7829f2ac279dac3a;p=php Fixed compile warning. --- diff --git a/ext/hyperwave/hw.c b/ext/hyperwave/hw.c index e81c1d44e9..0f35e101d1 100644 --- a/ext/hyperwave/hw.c +++ b/ext/hyperwave/hw.c @@ -2733,8 +2733,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;