diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-10-05 11:05:26 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-10-05 11:05:26 +0200 |
commit | 7edeed5a4fae0199a65dc724c2c131d4d120bf28 (patch) | |
tree | c27e90705a7c083643913a82a4deb2d74b385e57 /tree/path.c | |
parent | 98e44466052e654c6b34a685fe7dbc433632aecc (diff) | |
download | mupdf-7edeed5a4fae0199a65dc724c2c131d4d120bf28.tar.xz |
strip out c99-isms for msvc
Diffstat (limited to 'tree/path.c')
-rw-r--r-- | tree/path.c | 2 |
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) |