From da110d3f595daab86efbe7648373a86c91c9bd92 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Sun, 17 Nov 2002 00:11:19 +0000 Subject: [PATCH] Fix compile warning. --- main/streams.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.1