Remove comma at the end of enumeration
authorTobias Grosser <grosser@fim.uni-passau.de>
Sat, 10 Jul 2010 09:06:10 +0000 (11:06 +0200)
committerSven Verdoolaege <skimo@kotnet.org>
Sun, 11 Jul 2010 08:44:08 +0000 (10:44 +0200)
This is invalid in C89. Some compilers warn or fail if they are set to
strict compilation options.

Signed-off-by: Tobias Grosser <grosser@fim.uni-passau.de>
Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
include/isl_ctx.h

index e5969a4..8a79231 100644 (file)
@@ -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;