summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-06-09 12:27:02 +0000
committerCarl Worth <cworth@cworth.org>2005-06-09 12:27:02 +0000
commite6eef091152a7bcdcc6119224fa1aa1bfea5a823 (patch)
tree3879c4bdcb7a7bbfe7041310b4f5306142c27e75
parent23976d00b2cfb4640a0e0119247ae7d8f7f2ad73 (diff)
Remove trailing comma from enum values which gcc 4.0 does not want to see (Luis Villa). Closes bug #3502.
-rw-r--r--ChangeLog5
-rw-r--r--src/cairo.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4f8b95172..8a82f3539 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-09 Carl Worth <cworth@cworth.org>
+
+ * src/cairo.h: Remove trailing comma from enum values which gcc
+ 4.0 does not want to see (Luis Villa). Closes bug #3502.
+
2005-06-09 Owen Taylor <otaylor@redhat.com>
* test/Makefile.am (INCLUDES): Add
diff --git a/src/cairo.h b/src/cairo.h
index 89b5cf6ea..61119c25f 100644
--- a/src/cairo.h
+++ b/src/cairo.h
@@ -160,7 +160,7 @@ typedef enum cairo_status {
CAIRO_STATUS_READ_ERROR,
CAIRO_STATUS_WRITE_ERROR,
CAIRO_STATUS_SURFACE_FINISHED,
- CAIRO_STATUS_SURFACE_TYPE_MISMATCH,
+ CAIRO_STATUS_SURFACE_TYPE_MISMATCH
} cairo_status_t;
/**