summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2013-03-08 14:25:26 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2013-03-08 14:25:26 +0000
commitf50ced2e7b4b2f4601dc9b9edf1a861401c302e4 (patch)
tree14e79510f82709c4d5b9666526020fa2fe2b5eb9
parent524e6fd3e82d952dfa850b832238a1f4f9ccb8bb (diff)
gl: Fix typo s/bool/cairo_bool_t/
One quickly gets used to having stdbool.h available.
-rw-r--r--src/cairo-egl-context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-egl-context.c b/src/cairo-egl-context.c
index c8655875..bb0772ab 100644
--- a/src/cairo-egl-context.c
+++ b/src/cairo-egl-context.c
@@ -277,7 +277,7 @@ cairo_gl_surface_create_for_egl (cairo_device_t *device,
return &surface->base.base;
}
-static bool is_egl_device (cairo_device_t *device)
+static cairo_bool_t is_egl_device (cairo_device_t *device)
{
return (device->backend != NULL &&
device->backend->type == CAIRO_DEVICE_TYPE_GL);