summaryrefslogtreecommitdiff
path: root/tree/path.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2004-10-05 11:05:26 +0200
committerTor Andersson <tor@ghostscript.com>2004-10-05 11:05:26 +0200
commit7edeed5a4fae0199a65dc724c2c131d4d120bf28 (patch)
treec27e90705a7c083643913a82a4deb2d74b385e57 /tree/path.c
parent98e44466052e654c6b34a685fe7dbc433632aecc (diff)
downloadmupdf-7edeed5a4fae0199a65dc724c2c131d4d120bf28.tar.xz
strip out c99-isms for msvc
Diffstat (limited to 'tree/path.c')
-rw-r--r--tree/path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tree/path.c b/tree/path.c
index bab84401..268e5dae 100644
--- a/tree/path.c
+++ b/tree/path.c
@@ -187,7 +187,7 @@ fz_rect
fz_boundpathnode(fz_pathnode *path, fz_matrix ctm)
{
fz_point p;
- fz_rect r = FZ_INFRECT;
+ fz_rect r = fz_infiniterect();
int i = 0;
while (i < path->len)