summaryrefslogtreecommitdiff
path: root/gzip.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gzip.cpp')
-rw-r--r--gzip.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gzip.cpp b/gzip.cpp
index 09e420a7..1e16e1c6 100644
--- a/gzip.cpp
+++ b/gzip.cpp
@@ -65,12 +65,12 @@ void Gunzip::ProcessPrestreamHeader()
if (flags & FILENAME) // skip filename
do
- if(!m_inQueue.Get(b)) throw HeaderErr();
+ if (!m_inQueue.Get(b)) throw HeaderErr();
while (b);
if (flags & COMMENTS) // skip comments
do
- if(!m_inQueue.Get(b)) throw HeaderErr();
+ if (!m_inQueue.Get(b)) throw HeaderErr();
while (b);
}