summaryrefslogtreecommitdiff
path: root/fitz/node_misc2.c
diff options
context:
space:
mode:
Diffstat (limited to 'fitz/node_misc2.c')
-rw-r--r--fitz/node_misc2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fitz/node_misc2.c b/fitz/node_misc2.c
index cd4595f4..5382273e 100644
--- a/fitz/node_misc2.c
+++ b/fitz/node_misc2.c
@@ -297,10 +297,10 @@ fz_rect
fz_boundimagenode(fz_imagenode *node, fz_matrix ctm)
{
fz_rect bbox;
- bbox.min.x = 0;
- bbox.min.y = 0;
- bbox.max.x = 1;
- bbox.max.y = 1;
+ bbox.x0 = 0;
+ bbox.y0 = 0;
+ bbox.x1 = 1;
+ bbox.y1 = 1;
return fz_transformaabb(ctm, bbox);
}