aboutsummaryrefslogtreecommitdiff
path: root/common/stream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/stream.cpp')
-rw-r--r--common/stream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/stream.cpp b/common/stream.cpp
index 946b26a393..9329ddea6c 100644
--- a/common/stream.cpp
+++ b/common/stream.cpp
@@ -202,7 +202,7 @@ bool SeekableSubReadStream::seek(int32 offset, int whence) {
assert(_pos >= _begin);
assert(_pos <= _end);
- switch(whence) {
+ switch (whence) {
case SEEK_END:
offset = size() + offset;
// fallthrough