diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-03-08 14:25:26 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-03-08 14:25:26 +0000 |
commit | f50ced2e7b4b2f4601dc9b9edf1a861401c302e4 (patch) | |
tree | 14e79510f82709c4d5b9666526020fa2fe2b5eb9 /src/cairo-egl-context.c | |
parent | 524e6fd3e82d952dfa850b832238a1f4f9ccb8bb (diff) | |
download | cairo-f50ced2e7b4b2f4601dc9b9edf1a861401c302e4.tar.gz |
gl: Fix typo s/bool/cairo_bool_t/
One quickly gets used to having stdbool.h available.
Diffstat (limited to 'src/cairo-egl-context.c')
-rw-r--r-- | src/cairo-egl-context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-egl-context.c b/src/cairo-egl-context.c index c86558758..bb0772ab4 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); |