[clip] Missing {} (coding style)

Carl spotted that I'd slipped in a little CODING_STYLE violation.
This commit is contained in:
Chris Wilson 2009-06-17 17:15:26 +01:00
parent bc87074185
commit 002264d572

View file

@ -337,8 +337,9 @@ _cairo_clip_intersect_region (cairo_clip_t *clip,
if (clip->region) {
status = cairo_region_intersect (clip->region, region);
cairo_region_destroy (region);
} else
} else {
clip->region = region;
}
clip->serial = _cairo_surface_allocate_clip_serial (target);