[cairo-path] Return CAIRO_STATUS_SUCCESS.

If we have already returned the error status, then it is cleaner (and
the common idiom) to use 'return CAIRO_STATUS_SUCCESS' rather than
'return status'.
This commit is contained in:
Chris Wilson 2007-10-30 11:01:40 +00:00
parent e57df31963
commit 39664b7cac

View file

@ -339,7 +339,7 @@ _cairo_path_populate (cairo_path_t *path,
/* Sanity check the count */
assert (cpp.data - path->data == path->num_data);
return status;
return CAIRO_STATUS_SUCCESS;
}
cairo_path_t *