From 1dc3afe5739df106db07951b8f44435b1b4858bd Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Sat, 10 Jul 2010 11:06:10 +0200 Subject: [PATCH] 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 --- include/isl_ctx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4