mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 06:28:01 +02:00
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:
parent
23976d00b2
commit
e6eef09115
2 changed files with 6 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue