Remove trailing commas from enum, (some compilers like to complain about this).

This commit is contained in:
Carl Worth 2003-12-17 13:17:13 +00:00
parent decf8b395c
commit 22792e2e7a
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2003-12-17 Carl Worth <cworth@east.isi.edu>
* src/pixman.h: Remove trailing commas from enum, (some compilers
like to complain about this).
2003-12-12 Dave Beckett <Dave.Beckett@bristol.ac.uk>
* src/Makefile.am: Remove LIBPIXMAN_CFLAGS/LIBS cruft.

View file

@ -54,7 +54,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
******************************************************************/
/* $Id: pixman.h,v 1.10 2003-12-12 18:47:59 cworth Exp $ */
/* $Id: pixman.h,v 1.11 2003-12-17 21:17:13 cworth Exp $ */
/* libic.h */
@ -225,7 +225,7 @@ typedef enum _pixman_operator_t {
PIXMAN_OPERATOR_ATOP_REVERSE,
PIXMAN_OPERATOR_XOR,
PIXMAN_OPERATOR_ADD,
PIXMAN_OPERATOR_SATURATE,
PIXMAN_OPERATOR_SATURATE
} pixman_operator_t;