From ec94f0a7e2e82bee3973f4c64eb23bb60cac846c Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 4 May 2006 12:50:50 -0700 Subject: [PATCH] Remove trailing comma in enum to pander to non-C99-conformant compilers --- src/cairo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cairo.h b/src/cairo.h index 936006edf..cd23df4f9 100644 --- a/src/cairo.h +++ b/src/cairo.h @@ -195,7 +195,7 @@ typedef enum _cairo_status { CAIRO_STATUS_INVALID_VISUAL, CAIRO_STATUS_FILE_NOT_FOUND, CAIRO_STATUS_INVALID_DASH, - CAIRO_STATUS_INVALID_DSC_COMMENT, + CAIRO_STATUS_INVALID_DSC_COMMENT } cairo_status_t; /**