From: Roland Haeder Date: Sat, 17 May 2014 21:21:16 +0000 (+0200) Subject: Opps, don't use instance here, file pointer is okay. ;-) X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=d96bf75fef84c340f008f1266994e4b12a488df5 Opps, don't use instance here, file pointer is okay. ;-) Signed-off-by: Roland Häder --- diff --git a/inc/classes/main/file_directories/io/class_FrameworkFileInputOutputPointer.php b/inc/classes/main/file_directories/io/class_FrameworkFileInputOutputPointer.php index 36c81898..da4096f9 100644 --- a/inc/classes/main/file_directories/io/class_FrameworkFileInputOutputPointer.php +++ b/inc/classes/main/file_directories/io/class_FrameworkFileInputOutputPointer.php @@ -137,7 +137,7 @@ class FrameworkFileInputOutputPointer extends BaseFileIo implements InputOutputP */ public function seek ($seekPosition, $whence = SEEK_SET) { // Move the file pointer - assert(fseek($this->getPointerInstance(), $seekPosition, $whence) === 0); + assert(fseek($this->getPointer(), $seekPosition, $whence) === 0); } }