diff options
Diffstat (limited to 'common/zlib.cpp')
-rw-r--r-- | common/zlib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/zlib.cpp b/common/zlib.cpp index 519b7c4806..7f04bd5a4f 100644 --- a/common/zlib.cpp +++ b/common/zlib.cpp @@ -154,7 +154,7 @@ public: bool seek(int32 offset, int whence = SEEK_SET) { int32 newPos = 0; assert(whence != SEEK_END); // SEEK_END not supported - switch(whence) { + switch (whence) { case SEEK_SET: newPos = offset; break; |