diff options
author | Sebastian Rasmussen <sebras@gmail.com> | 2017-10-04 21:11:32 +0200 |
---|---|---|
committer | Sebastian Rasmussen <sebras@gmail.com> | 2017-10-05 13:07:43 +0200 |
commit | 5799d09e269c91669d5dd8b20b3f19339409e677 (patch) | |
tree | 4db61feb9ecb6414ecb721ff88f30aba3ee34b6a /source/pdf/pdf-lex.c | |
parent | bf5c87d664dbdac75d35a9c3927599aa451e45dc (diff) | |
download | mupdf-5799d09e269c91669d5dd8b20b3f19339409e677.tar.xz |
Remove shadowed variables.
Diffstat (limited to 'source/pdf/pdf-lex.c')
-rw-r--r-- | source/pdf/pdf-lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-lex.c b/source/pdf/pdf-lex.c index c823dca7..2a1b4685 100644 --- a/source/pdf/pdf-lex.c +++ b/source/pdf/pdf-lex.c @@ -156,7 +156,7 @@ lex_number(fz_context *ctx, fz_stream *f, pdf_lexbuf *buf, int c) while (s < e) { - int c = fz_read_byte(ctx, f); + c = fz_read_byte(ctx, f); switch (c) { case IS_WHITE: |