Remove trailing comma from enum values which gcc 4.0 does not want to see (Luis Villa). Closes bug #3502.

This commit is contained in:
Carl Worth 2005-06-09 12:27:02 +00:00
parent 23976d00b2
commit e6eef09115
2 changed files with 6 additions and 1 deletions

View file

@ -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

View file

@ -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;
/**