Syntax error fixed.
authorRoland Haeder <roland@mxchange.org>
Fri, 23 May 2014 23:35:07 +0000 (01:35 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 23 May 2014 23:35:07 +0000 (01:35 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/iterator/io/class_FileIoIterator.php

index 97a3e3d4abf18195ca582daf231390e52cc6a88e..888652f6300aa3752fd6a5670b7af898b04c3d18 100644 (file)
@@ -150,7 +150,7 @@ class FileIoIterator extends BaseIterator implements SeekableWritableFileIterato
 
                // Wait until a entry/block separator has been found
                $data = $this->getBackBuffer();
-               while (($this->getPointerInstance()->isEndOfFileReached()) && (!$this->getBlockInstance()->isBlockSeparatorFound($data)) {
+               while (($this->getPointerInstance()->isEndOfFileReached()) && (!$this->getBlockInstance()->isBlockSeparatorFound($data))) {
                        // Then read the block
                        $data .= $this->read($length);
                        /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('data()=' . strlen($data));