summaryrefslogtreecommitdiff
path: root/include/mupdf/fitz/stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mupdf/fitz/stream.h')
-rw-r--r--include/mupdf/fitz/stream.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/mupdf/fitz/stream.h b/include/mupdf/fitz/stream.h
index 9baf0e0f..23a649bc 100644
--- a/include/mupdf/fitz/stream.h
+++ b/include/mupdf/fitz/stream.h
@@ -399,7 +399,6 @@ static inline unsigned int fz_read_rbits(fz_context *ctx, fz_stream *stm, int n)
x = stm->bits & ((1 << n) - 1);
stm->avail -= n;
stm->bits = stm->bits >> n;
-
}
else
{
@@ -412,7 +411,6 @@ static inline unsigned int fz_read_rbits(fz_context *ctx, fz_stream *stm, int n)
while (n > 8)
{
-
x = (fz_read_byte(ctx, stm) << used) | x;
n -= 8;
used += 8;