diff options
author | Johannes Schickel | 2010-04-13 16:13:48 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-04-13 16:13:48 +0000 |
commit | a71eb594677bf3631a6264e9b92bb1ac1ff4c8a6 (patch) | |
tree | 6c436cc068a0852bf7217cd736db3183a8f17d04 | |
parent | 69b86db74cfcd1abee5e52ff71732153f39feed7 (diff) | |
download | scummvm-rg350-a71eb594677bf3631a6264e9b92bb1ac1ff4c8a6.tar.gz scummvm-rg350-a71eb594677bf3631a6264e9b92bb1ac1ff4c8a6.tar.bz2 scummvm-rg350-a71eb594677bf3631a6264e9b92bb1ac1ff4c8a6.zip |
Whitespace fix.
svn-id: r48654
-rw-r--r-- | common/fs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/fs.cpp b/common/fs.cpp index 56388858b6..87067df2cc 100644 --- a/common/fs.cpp +++ b/common/fs.cpp @@ -132,7 +132,7 @@ Common::SeekableReadStream *FSNode::createReadStream() const { return 0; if (!_realNode->exists()) { - warning("FSNode::createReadStream: '%s' does not exist", getName().c_str()); + warning("FSNode::createReadStream: '%s' does not exist", getName().c_str()); return false; } else if (_realNode->isDirectory()) { warning("FSNode::createReadStream: '%s' is a directory", getName().c_str()); |