diff options
author | Tor Andersson <tor@ghostscript.com> | 2010-07-09 02:47:51 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2010-07-09 02:47:51 +0200 |
commit | 8d68dec4b460ac292ce0021717160a8cd9fcc8dd (patch) | |
tree | 322b0a32d97fa288fad5d0114561047bc1c4bf08 /apps/mozilla | |
parent | 3a4c396334bc500de4c9b1e957f030835b5df65e (diff) | |
download | mupdf-8d68dec4b460ac292ce0021717160a8cd9fcc8dd.tar.xz |
Rearrange and merge some files in the fitz directory.
Diffstat (limited to 'apps/mozilla')
-rw-r--r-- | apps/mozilla/moz_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/mozilla/moz_main.c b/apps/mozilla/moz_main.c index 551c34c1..b5ba7e7a 100644 --- a/apps/mozilla/moz_main.c +++ b/apps/mozilla/moz_main.c @@ -214,7 +214,7 @@ fz_matrix pdfmoz_pagectm(pdfmoz_t *moz, int pagenum) zoom = (rc.right - rc.left) / (float) page->w; - ctm = fz_identity(); + ctm = fz_identity; ctm = fz_concat(ctm, fz_translate(0, -page->page->mediabox.y1)); ctm = fz_concat(ctm, fz_scale(zoom, -zoom)); ctm = fz_concat(ctm, fz_rotate(page->page->rotate)); |