ref: 15c29503fbfefbed879c5cdf86e06dbb530796bf
parent: 601cb88918d7c0b0b0394b1408c015f7bdd7128c
author: Werner Lemberg <[email protected]>
date: Sat Dec 9 02:29:54 EST 2006
* src/tools/apinames (State): Remove final comma in structure -- xlc v5 under AIX 4.3 doesn't like this.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-12-08 Vladimir Volovich <[email protected]>
+
+ * src/tools/apinames (State): Remove final comma in structure -- xlc
+ v5 under AIX 4.3 doesn't like this.
+
2006-12-07 David Turner <[email protected]>
* src/autofit/afloader.c (af_loader_load_g): Small adjustment
--- a/src/tools/apinames.c
+++ b/src/tools/apinames.c
@@ -194,7 +194,7 @@
typedef enum
{
STATE_START = 0, /* waiting for FT_EXPORT keyword and return type */
- STATE_TYPE, /* type was read, waiting for function name */
+ STATE_TYPE /* type was read, waiting for function name */
} State;