diff options
author | Karl Berry <karl@freefriends.org> | 2006-12-09 00:02:39 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-12-09 00:02:39 +0000 |
commit | 9baaad56e9ab49f081df3b369b751946bf3c28a6 (patch) | |
tree | 460a38b3fb09e5605c5a7a178af86abcb57ede93 | |
parent | 3c362db355d924e8bc230abd2c93288fb0ba20aa (diff) |
(State): removing trailing comma to appease xlc;
reported by vvv (upstream to Werner, too).
git-svn-id: svn://tug.org/texlive/trunk@2645 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/libs/freetype2/src/tools/apinames.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/libs/freetype2/src/tools/apinames.c b/Build/source/libs/freetype2/src/tools/apinames.c index 43d58d616e0..f08919bee6c 100644 --- a/Build/source/libs/freetype2/src/tools/apinames.c +++ b/Build/source/libs/freetype2/src/tools/apinames.c @@ -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; |