summaryrefslogtreecommitdiff
path: root/src/cairo-spline.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2003-09-27 05:00:47 +0000
committerCarl Worth <cworth@cworth.org>2003-09-27 05:00:47 +0000
commit60d541ee6a85a63638e2d30623f703d0c8e474c7 (patch)
tree82faad9bec09b712ac4be525e5bbbf184d2313f1 /src/cairo-spline.c
parent4dc8b3a312d0f390306131006e6d87a25e41ce58 (diff)
Fixed some internal enums that had been mistakenly converted to lowercase at some point.
Diffstat (limited to 'src/cairo-spline.c')
-rw-r--r--src/cairo-spline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-spline.c b/src/cairo-spline.c
index 31850bb4..3cb55ea9 100644
--- a/src/cairo-spline.c
+++ b/src/cairo-spline.c
@@ -64,7 +64,7 @@ _cairo_spline_init (cairo_spline_t *spline,
} else if (a->x != d->x || a->y != d->y) {
_cairo_slope_init (&spline->initial_slope, &spline->a, &spline->d);
} else {
- return cairo_int_status_degenerate;
+ return CAIRO_INT_STATUS_DEGENERATE;
}
if (c->x != d->x || c->y != d->y) {