From: Philipp Takacs Date: Sun, 30 Dec 2018 02:11:53 +0000 (+0100) Subject: h/mh.h remove comma at the end of enum state X-Git-Tag: mmh-0.4~9 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=216b5073ff0503c04868769fe7930c49f6fbcf1c h/mh.h remove comma at the end of enum state This is a C99 feature and mmh stick to C98. Just to stop the noise from the compiler ;-) --- diff --git a/h/mh.h b/h/mh.h index 20346b6..6337a0c 100644 --- a/h/mh.h +++ b/h/mh.h @@ -220,7 +220,7 @@ enum state { IOERR2 = -1, /* Read error */ FLD2 = 0, /* Header field returned */ BODY2, /* Body line returned */ - FILEEOF2, /* Reached end of input file */ + FILEEOF2 /* Reached end of input file */ }; #define NOUSE 0 /* draft being re-used */