From: Tobias Grosser Date: Sat, 10 Jul 2010 09:06:10 +0000 (+0200) Subject: Remove comma at the end of enumeration X-Git-Tag: isl-0.04~102 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1dc3afe5739df106db07951b8f44435b1b4858bd;p=platform%2Fupstream%2Fisl.git Remove comma at the end of enumeration This is invalid in C89. Some compilers warn or fail if they are set to strict compilation options. Signed-off-by: Tobias Grosser Signed-off-by: Sven Verdoolaege --- diff --git a/include/isl_ctx.h b/include/isl_ctx.h index e5969a4..8a79231 100644 --- a/include/isl_ctx.h +++ b/include/isl_ctx.h @@ -63,7 +63,7 @@ struct isl_stats { enum isl_error { isl_error_none = 0, isl_error_unknown, - isl_error_invalid, + isl_error_invalid }; struct isl_ctx { int ref;