summaryrefslogtreecommitdiff
path: root/mupdf/pdf_lex.c
diff options
context:
space:
mode:
Diffstat (limited to 'mupdf/pdf_lex.c')
-rw-r--r--mupdf/pdf_lex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mupdf/pdf_lex.c b/mupdf/pdf_lex.c
index e0425685..350bb1c7 100644
--- a/mupdf/pdf_lex.c
+++ b/mupdf/pdf_lex.c
@@ -49,7 +49,7 @@ static inline int ishex(int ch)
static inline int fromhex(int ch)
{
if (ch >= '0' && ch <= '9')
- return ch - '0';
+ return ch - '0';
else if (ch >= 'A' && ch <= 'F')
return ch - 'A' + 0xA;
else if (ch >= 'a' && ch <= 'f')
@@ -343,7 +343,7 @@ pdf_lex(pdf_token_e *tok, fz_stream *f, char *buf, int n, int *sl)
goto cleanupokay;
}
- else if (c == '}')
+ else if (c == '}')
{
fz_readbyte(f);
*tok = PDF_TCBRACE;