]> granicus.if.org Git - php/commitdiff
Fix compile warning.
authorIlia Alshanetsky <iliaa@php.net>
Sun, 17 Nov 2002 00:11:19 +0000 (00:11 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Sun, 17 Nov 2002 00:11:19 +0000 (00:11 +0000)
main/streams.c

index 1990a692e998a667519350d3298fe39ffd61ed01..bb6a3bd082ff1a6ca418364dec957be014803879 100755 (executable)
@@ -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;
        }