summaryrefslogtreecommitdiff
path: root/pdf/pdf_interpret.c
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2013-01-04 15:56:09 +0100
committerRobin Watts <robin.watts@artifex.com>2013-01-04 16:24:18 +0000
commit9ed0aa9c0b4dce36530f41f950e94bfe4d9133bc (patch)
tree602f4d3cd754080f2a9cf853539827bbb99f24b8 /pdf/pdf_interpret.c
parent1b3cb5fb5cad8eaf43daf4066c28febb4ec12c0b (diff)
downloadmupdf-9ed0aa9c0b4dce36530f41f950e94bfe4d9133bc.tar.xz
Make token enum a type to ease debugging
Diffstat (limited to 'pdf/pdf_interpret.c')
-rw-r--r--pdf/pdf_interpret.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pdf/pdf_interpret.c b/pdf/pdf_interpret.c
index 860ad62d..dc1044b4 100644
--- a/pdf/pdf_interpret.c
+++ b/pdf/pdf_interpret.c
@@ -2607,7 +2607,7 @@ static void
pdf_run_stream(pdf_csi *csi, pdf_obj *rdb, fz_stream *file, pdf_lexbuf *buf)
{
fz_context *ctx = csi->dev->ctx;
- int tok = PDF_TOK_ERROR;
+ pdf_token tok = PDF_TOK_ERROR;
int in_array;
int ignoring_errors = 0;