summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-01-24 16:39:49 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-01-24 16:39:49 +0000
commitd2162b32b1f19e7603f1522c7829f2ac279dac3a (patch)
tree875a35c089fe51a627de5bf537af7db34cb40021
parentf163a4d16b5c9ec67d617e8ed87967d512fbcc59 (diff)
downloadphp-git-d2162b32b1f19e7603f1522c7829f2ac279dac3a.tar.gz
Fixed compile warning.
-rw-r--r--ext/hyperwave/hw.c3
1 files changed, 1 insertions, 2 deletions
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;