summaryrefslogtreecommitdiff
path: root/source/html/epub-doc.c
diff options
context:
space:
mode:
authorRobin Watts <Robin.Watts@artifex.com>2017-03-21 15:53:01 -0400
committerRobin Watts <Robin.Watts@artifex.com>2017-03-22 18:29:42 -0400
commit546e1fce1b1556f56860a46f326094b997a3237c (patch)
tree1bdf70ae60a0a84daa1a6e37e3cc04d612e38b49 /source/html/epub-doc.c
parentad65190db33e7024b71cd21a6ea1483940f0bf92 (diff)
downloadmupdf-546e1fce1b1556f56860a46f326094b997a3237c.tar.xz
Update fz_new_page.
Move this into the same style as fz_new_document and fz_new_image.
Diffstat (limited to 'source/html/epub-doc.c')
-rw-r--r--source/html/epub-doc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/html/epub-doc.c b/source/html/epub-doc.c
index dab46155..d443dbae 100644
--- a/source/html/epub-doc.c
+++ b/source/html/epub-doc.c
@@ -215,7 +215,7 @@ static fz_page *
epub_load_page(fz_context *ctx, fz_document *doc_, int number)
{
epub_document *doc = (epub_document*)doc_;
- epub_page *page = fz_new_page(ctx, sizeof *page);
+ epub_page *page = fz_new_page(ctx, epub_page);
page->super.bound_page = epub_bound_page;
page->super.run_page_contents = epub_run_page;
page->super.load_links = epub_load_links;