summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-05-27 19:18:25 +0200
committerTor Andersson <tor@ghostscript.com>2010-05-27 19:18:25 +0200
commit5b09c0026585fe3063b467edde908e013e2be08b (patch)
tree671fac07f9509a418e3eec59a67fb74b7093e9d2
parent16d1e5d8d9506c850db1637d152068a36984cc7f (diff)
downloadmupdf-5b09c0026585fe3063b467edde908e013e2be08b.tar.xz
Add missing break statement to pdf_runkeyword that resulted in spurious warnings.
-rw-r--r--mupdf/pdf_interpret.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mupdf/pdf_interpret.c b/mupdf/pdf_interpret.c
index c182f111..ac94d325 100644
--- a/mupdf/pdf_interpret.c
+++ b/mupdf/pdf_interpret.c
@@ -796,6 +796,7 @@ Lsetcolor:
case PDF_MSHADE:
return fz_throw("cannot set color in shade objects");
}
+ break;
}
default:
goto defaultcase;