aboutsummaryrefslogtreecommitdiff
path: root/common/stream.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2005-07-30 21:11:48 +0000
committerEugene Sandulenko2005-07-30 21:11:48 +0000
commit6b4484472b79dc7ea7d1ce545a28fba7d3b7696f (patch)
treec44c4e61f18ddd537f7082cb48869cf33d422fbd /common/stream.cpp
parent86ab70b149e5cd00cf54f2e41896e2c4e16795e4 (diff)
downloadscummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.gz
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.bz2
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.zip
Remove trailing whitespaces.
svn-id: r18604
Diffstat (limited to 'common/stream.cpp')
-rw-r--r--common/stream.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/stream.cpp b/common/stream.cpp
index 7c184b08b1..a3d44b108d 100644
--- a/common/stream.cpp
+++ b/common/stream.cpp
@@ -78,14 +78,14 @@ char *SeekableReadStream::readLine(char *buf, size_t bufSize) {
// Unix and OS X use LF line breaks
// Macintosh before OS X uses CR line breaks
-
+
c = readByte();
if (eos() || ioFailed()) {
return 0;
}
while (!eos() && len + 1 < bufSize) {
-
+
if (ioFailed())
return 0;
@@ -101,7 +101,7 @@ char *SeekableReadStream::readLine(char *buf, size_t bufSize) {
*p++ = c;
len++;
-
+
c = readByte();
}