diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2016-07-14 01:06:24 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2016-07-14 10:39:06 +0200 |
commit | c805c4609b0c433e81d438325a409c9f97948fa3 (patch) | |
tree | f622cb2321c2e097ea1cba0daf2ce36870ccd1a3 /source | |
parent | c1901196a057f9f8e46f9b4b97e7822a0fb3ef23 (diff) | |
download | mupdf-c805c4609b0c433e81d438325a409c9f97948fa3.tar.xz |
Fix typo in fz_new_stext_page_from_page.
Diffstat (limited to 'source')
-rw-r--r-- | source/fitz/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/util.c b/source/fitz/util.c index ff1464fc..fc49d84f 100644 --- a/source/fitz/util.c +++ b/source/fitz/util.c @@ -299,7 +299,7 @@ fz_new_stext_page_from_page(fz_context *ctx, fz_page *page, fz_stext_sheet *shee { fz_stext_page *text; fz_device *dev; - fz_rect *mediabox; + fz_rect mediabox; if (page == NULL) return NULL; |