fix return type of NativeStream seek

This commit is contained in:
Robin Appelman 2014-10-17 15:37:58 +02:00
commit f018d1cd0a
2 changed files with 2 additions and 2 deletions

View file

@ -80,7 +80,7 @@ class NativeStream implements File {
public function stream_seek($offset, $whence = SEEK_SET) {
$this->eof = false;
return $this->state->lseek($this->handle, $offset, $whence);
return $this->state->lseek($this->handle, $offset, $whence) !== false;
}
public function stream_stat() {