* src/tools/apinames (State): Remove final comma in structure -- xlc

v5 under AIX 4.3 doesn't like this.
This commit is contained in:
Werner Lemberg 2006-12-09 07:29:54 +00:00
parent 601cb88918
commit 15c29503fb
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-12-08 Vladimir Volovich <vvv@vsu.ru>
* src/tools/apinames (State): Remove final comma in structure -- xlc
v5 under AIX 4.3 doesn't like this.
2006-12-07 David Turner <david@freetype.org>
* src/autofit/afloader.c (af_loader_load_g): Small adjustment

View File

@ -194,7 +194,7 @@ names_dump( FILE* out,
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;