diff options
| author | Eugene Sandulenko | 2009-01-01 15:06:43 +0000 |
|---|---|---|
| committer | Eugene Sandulenko | 2009-01-01 15:06:43 +0000 |
| commit | 696897b0583ad52ebc6f7666525277847619a8ce (patch) | |
| tree | 5ac2be2991e94dce32c5bb7fdb0dcc4188221503 /common | |
| parent | 05d3633eb32ead8e11435b85a9db1ddaa1482fcb (diff) | |
| download | scummvm-rg350-696897b0583ad52ebc6f7666525277847619a8ce.tar.gz scummvm-rg350-696897b0583ad52ebc6f7666525277847619a8ce.tar.bz2 scummvm-rg350-696897b0583ad52ebc6f7666525277847619a8ce.zip | |
Whoa! Removing trailing spaces.
svn-id: r35648
Diffstat (limited to 'common')
| -rw-r--r-- | common/fs.h | 2 | ||||
| -rw-r--r-- | common/unzip.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/fs.h b/common/fs.h index 29d6f667ca..4d3a417c8b 100644 --- a/common/fs.h +++ b/common/fs.h @@ -223,7 +223,7 @@ public: * @return pointer to the stream object, 0 in case of a failure */ virtual WriteStream *openForWriting() const; - + // Compatibility with ArchiveMember API. SeekableReadStream *open() { return openForReading(); diff --git a/common/unzip.cpp b/common/unzip.cpp index 1a65b2e9b4..abb2096f4a 100644 --- a/common/unzip.cpp +++ b/common/unzip.cpp @@ -1442,7 +1442,7 @@ Common::SeekableReadStream *ZipArchive::openFile(const Common::String &name) { unzReadCurrentFile(_zipFile, buffer, fileInfo.uncompressed_size); unzCloseCurrentFile(_zipFile); return new Common::MemoryReadStream(buffer, fileInfo.uncompressed_size+1, true); - + // FIXME: instead of reading all into a memory stream, we could // instead create a new ZipStream class. But then we have to be // careful to handle the case where the client code opens multiple |
