diff options
author | Carl Worth <cworth@cworth.org> | 2007-04-09 17:42:04 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2007-04-10 10:14:49 -0700 |
commit | 01955a6e82ee28dd1377a3f2242aa2ddeebadac9 (patch) | |
tree | d114567fbf344771ccca85400f539335254143a9 /src/cairo-spline.c | |
parent | d317e8175de04c73c4a1f84db4a7e5354411ca06 (diff) |
Rename ARRAY_LEN to ARRAY_LENGTH
Yet another victim in my hunt against abbreviations within cairo's implementation.
Diffstat (limited to 'src/cairo-spline.c')
-rw-r--r-- | src/cairo-spline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cairo-spline.c b/src/cairo-spline.c index b63ac57e..bf877700 100644 --- a/src/cairo-spline.c +++ b/src/cairo-spline.c @@ -81,7 +81,7 @@ _cairo_spline_init (cairo_spline_t *spline, _cairo_slope_init (&spline->final_slope, &spline->a, &spline->d); spline->points = spline->points_embedded; - spline->points_size = ARRAY_LEN (spline->points_embedded); + spline->points_size = ARRAY_LENGTH (spline->points_embedded); spline->num_points = 0; return CAIRO_STATUS_SUCCESS; @@ -94,7 +94,7 @@ _cairo_spline_fini (cairo_spline_t *spline) free (spline->points); spline->points = spline->points_embedded; - spline->points_size = ARRAY_LEN (spline->points_embedded); + spline->points_size = ARRAY_LENGTH (spline->points_embedded); spline->num_points = 0; } |