summaryrefslogtreecommitdiff
path: root/src/cairo-path-bounds.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2003-07-31 22:49:09 +0000
committerRichard Henderson <rth@twiddle.net>2003-07-31 22:49:09 +0000
commit83d5f0352ca54adb5fa5caa12dbba6c7f5e7755d (patch)
tree541dc66af3fe4d9bde1886ff9e56c2abccdb7637 /src/cairo-path-bounds.c
parent9289e8a77af5a2cd7faa18c90cced6d90adad66a (diff)
downloadcairo-83d5f0352ca54adb5fa5caa12dbba6c7f5e7755d.tar.gz
Mark const.
Likewise. Likewise. Likewise for cb.
Diffstat (limited to 'src/cairo-path-bounds.c')
-rw-r--r--src/cairo-path-bounds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-path-bounds.c b/src/cairo-path-bounds.c
index 2335b1d90..27361f736 100644
--- a/src/cairo-path-bounds.c
+++ b/src/cairo-path-bounds.c
@@ -141,7 +141,7 @@ cairo_status_t
_cairo_path_bounds (cairo_path_t *path, double *x1, double *y1, double *x2, double *y2)
{
cairo_status_t status;
- static cairo_path_callbacks_t cb = {
+ static cairo_path_callbacks_t const cb = {
_cairo_path_bounder_add_edge,
_cairo_path_bounder_add_spline,
_cairo_path_bounder_done_sub_path,