From 216b5073ff0503c04868769fe7930c49f6fbcf1c Mon Sep 17 00:00:00 2001 From: Philipp Takacs Date: Sun, 30 Dec 2018 03:11:53 +0100 Subject: [PATCH] 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 ;-) --- h/mh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 1.7.10.4