From: Ilia Alshanetsky Date: Sun, 17 Nov 2002 00:11:19 +0000 (+0000) Subject: Fix compile warning. X-Git-Tag: php-4.3.0RC2~117 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da110d3f595daab86efbe7648373a86c91c9bd92;p=php Fix compile warning. --- diff --git a/main/streams.c b/main/streams.c index 1990a692e9..bb6a3bd082 100755 --- a/main/streams.c +++ b/main/streams.c @@ -2370,7 +2370,7 @@ PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstr *newstream = NULL; - if ((flags & PHP_STREAM_FORCE_CONVERSION == 0) && origstream->ops->seek != NULL) { + if (((flags & PHP_STREAM_FORCE_CONVERSION) == 0) && origstream->ops->seek != NULL) { *newstream = origstream; return PHP_STREAM_UNCHANGED; }