[PATCH] Remove trailing comma from enumerator list
I ran across an erroneous comma in an enumerator list when building the
latest G'MIC plugin [1] using the 2.7.0 release.
I couldn't find any related bug reports or fix for the problem in the
latest git tree so I've attached a patch to fix the issue.
Thanks,
Tim
[1] http://gmic.sourceforge.net/
From b0a58066836b14135861f13dfc4d86ea86c1169b Mon Sep 17 00:00:00 2001
From: Tim Harder
Date: Fri, 21 Aug 2009 13:49:38 -0700
Subject: [PATCH] Remove trailing comma from enumerator list
---
libgimpbase/gimpbaseenums.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libgimpbase/gimpbaseenums.h b/libgimpbase/gimpbaseenums.h
index 40566ca..cf90d5c 100644
--- a/libgimpbase/gimpbaseenums.h
+++ b/libgimpbase/gimpbaseenums.h
@@ -481,7 +481,7 @@ typedef enum
GIMP_TEXT_HINT_STYLE_NONE, /*< desc="None" >*/
GIMP_TEXT_HINT_STYLE_SLIGHT, /*< desc="Slight" >*/
GIMP_TEXT_HINT_STYLE_MEDIUM, /*< desc="Medium" >*/
- GIMP_TEXT_HINT_STYLE_FULL, /*< desc="Full" >*/
+ GIMP_TEXT_HINT_STYLE_FULL /*< desc="Full" >*/
} GimpTextHintStyle;