summaryrefslogtreecommitdiff
path: root/src/cairo-path-fill.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2007-04-08 21:22:56 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2007-04-09 15:05:13 +0100
commit814830f63b72f69198e92564c53f2683e5bda269 (patch)
tree2c873e8e58f58ed56254bd60911487c7ca9be556 /src/cairo-path-fill.c
parent7ab1f62c60141d5c0e989d55f4a49537a6b52c4d (diff)
cairo-path-fill - trivial missing unused result
Actually assign the result that is tested on the next line...
Diffstat (limited to 'src/cairo-path-fill.c')
-rw-r--r--src/cairo-path-fill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-path-fill.c b/src/cairo-path-fill.c
index b1b7a120..d2a9118a 100644
--- a/src/cairo-path-fill.c
+++ b/src/cairo-path-fill.c
@@ -138,7 +138,7 @@ _cairo_filler_curve_to (void *closure,
if (status == CAIRO_INT_STATUS_DEGENERATE)
return CAIRO_STATUS_SUCCESS;
- _cairo_spline_decompose (&spline, filler->tolerance);
+ status = _cairo_spline_decompose (&spline, filler->tolerance);
if (status)
goto CLEANUP_SPLINE;