From 7731c5a38957770a6f547d162e065d5df33995b2 Mon Sep 17 00:00:00 2001 From: Murray Cumming Date: Mon, 9 May 2011 09:45:06 +0200 Subject: [PATCH] cairo.h: Remove a trailing comma from an enum. This caused warnings when building with C++. --- src/cairo.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cairo.h b/src/cairo.h index 9632592..dc3fc5b 100644 --- a/src/cairo.h +++ b/src/cairo.h @@ -874,7 +874,7 @@ typedef struct _cairo_rectangle { * @status: Error status of the rectangle list * @rectangles: Array containing the rectangles * @num_rectangles: Number of rectangles in this list - * + * * A data structure for holding a dynamically allocated * array of rectangles. * @@ -2265,7 +2265,7 @@ typedef enum _cairo_format { CAIRO_FORMAT_A8 = 2, CAIRO_FORMAT_A1 = 3, CAIRO_FORMAT_RGB16_565 = 4, - CAIRO_FORMAT_RGB30 = 5, + CAIRO_FORMAT_RGB30 = 5 } cairo_format_t; cairo_public cairo_surface_t * -- 1.7.4.1