summaryrefslogtreecommitdiff
path: root/include/parserutils
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-04-15 15:50:06 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-04-15 15:50:06 +0000
commit82c9ccd349f10a551ff6df098e9a136982de6e2b (patch)
treeaf91e734083c687e5d24db46d144b9c1ae2ddc27 /include/parserutils
parenta8c732492a0a3e2bc576d945b9d6a964a082b96e (diff)
downloadlibparserutils-82c9ccd349f10a551ff6df098e9a136982de6e2b.tar.gz
libparserutils-82c9ccd349f10a551ff6df098e9a136982de6e2b.tar.bz2
Lose a bunch of trailing commas.
GCC 2.95 compatibility. svn path=/trunk/libparserutils/; revision=7094
Diffstat (limited to 'include/parserutils')
-rw-r--r--include/parserutils/charset/codec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/parserutils/charset/codec.h b/include/parserutils/charset/codec.h
index d79740b..d49c858 100644
--- a/include/parserutils/charset/codec.h
+++ b/include/parserutils/charset/codec.h
@@ -60,7 +60,7 @@ typedef enum parserutils_charset_codec_errormode {
/** Replace unrepresentable characters with single alternate */
PARSERUTILS_CHARSET_CODEC_ERROR_LOOSE = 1,
/** Transliterate unrepresentable characters, if possible */
- PARSERUTILS_CHARSET_CODEC_ERROR_TRANSLIT = 2,
+ PARSERUTILS_CHARSET_CODEC_ERROR_TRANSLIT = 2
} parserutils_charset_codec_errormode;
/**
@@ -68,7 +68,7 @@ typedef enum parserutils_charset_codec_errormode {
*/
typedef enum parserutils_charset_codec_opttype {
/** Set codec error mode */
- PARSERUTILS_CHARSET_CODEC_ERROR_MODE = 1,
+ PARSERUTILS_CHARSET_CODEC_ERROR_MODE = 1
} parserutils_charset_codec_opttype;
/**