diff options
author | Sebastian Rasmussen <sebras@hotmail.com> | 2008-08-29 09:45:11 +0200 |
---|---|---|
committer | Sebastian Rasmussen <sebras@hotmail.com> | 2008-08-29 09:45:11 +0200 |
commit | 0b2236cc4b60310efbd574ef3749d22364212e28 (patch) | |
tree | b8498bc7bccff93dbffd14d4a2bbf52d3734f1c1 | |
parent | 30f5a66f15627c378fbb62a8be960e7d296a1a73 (diff) | |
download | mupdf-0b2236cc4b60310efbd574ef3749d22364212e28.tar.xz |
Whitespace fix.
-rw-r--r-- | mupdf/pdf_image.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mupdf/pdf_image.c b/mupdf/pdf_image.c index c11433a7..71cc932d 100644 --- a/mupdf/pdf_image.c +++ b/mupdf/pdf_image.c @@ -33,7 +33,7 @@ pdf_loadinlineimage(pdf_image **imgp, pdf_xref *xref, pdf_logimage("load inline image %p {\n", img); img->super.refs = 1; - img->super.cs = nil; + img->super.cs = nil; img->super.loadtile = pdf_loadtile; img->super.drop = pdf_dropimage; img->super.n = 0; @@ -240,14 +240,14 @@ pdf_loadimage(pdf_image **imgp, pdf_xref *xref, fz_obj *dict, fz_obj *ref) obj = fz_dictgets(dict, "Width"); error = pdf_resolve(&obj, xref); if (error) - return fz_rethrow(error, "cannot parse image dictionary"); + return fz_rethrow(error, "cannot parse image dictionary"); w = fz_toint(obj); fz_dropobj(obj); obj = fz_dictgets(dict, "Height"); error = pdf_resolve(&obj, xref); if (error) - return fz_rethrow(error, "cannot parse image dictionary"); + return fz_rethrow(error, "cannot parse image dictionary"); h = fz_toint(obj); fz_dropobj(obj); @@ -255,11 +255,11 @@ pdf_loadimage(pdf_image **imgp, pdf_xref *xref, fz_obj *dict, fz_obj *ref) obj = fz_dictgets(dict, "BitsPerComponent"); if (obj) { - error = pdf_resolve(&obj, xref); - if (error) - return fz_rethrow(error, "cannot parse image dictionary"); - bpc = fz_toint(obj); - fz_dropobj(obj); + error = pdf_resolve(&obj, xref); + if (error) + return fz_rethrow(error, "cannot parse image dictionary"); + bpc = fz_toint(obj); + fz_dropobj(obj); } pdf_logimage("size %dx%d %d\n", w, h, bpc); |