diff options
author | Carl Worth <cworth@cworth.org> | 2006-06-07 01:17:53 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2006-06-07 02:56:45 -0700 |
commit | 7f2cf378d595fa559401c76f051ca9b5e6809763 (patch) | |
tree | efcfaf3abe9df402c818501adedd10974b74bc52 /src/cairo-traps.c | |
parent | bf458c9c67120a2d175f18447dd710060f0ba014 (diff) |
Fix MAX vs. MIN bug introduced with rename away from CAIRO_MINSHORT
Diffstat (limited to 'src/cairo-traps.c')
-rw-r--r-- | src/cairo-traps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-traps.c b/src/cairo-traps.c index cb9e9e49..107276cb 100644 --- a/src/cairo-traps.c +++ b/src/cairo-traps.c @@ -74,7 +74,7 @@ _cairo_traps_init (cairo_traps_t *traps) traps->traps_size = 0; traps->traps = NULL; traps->extents.p1.x = traps->extents.p1.y = INT16_MAX << 16; - traps->extents.p2.x = traps->extents.p2.y = INT16_MAX << 16; + traps->extents.p2.x = traps->extents.p2.y = INT16_MIN << 16; } void |