h/mh.h remove comma at the end of enum state
authorPhilipp Takacs <philipp@bureaucracy.de>
Sun, 30 Dec 2018 02:11:53 +0000 (03:11 +0100)
committerPhilipp Takacs <philipp@bureaucracy.de>
Sun, 30 Dec 2018 02:11:53 +0000 (03:11 +0100)
This is a C99 feature and mmh stick to C98.
Just to stop the noise from the compiler ;-)

h/mh.h

diff --git a/h/mh.h b/h/mh.h
index 20346b6..6337a0c 100644 (file)
--- 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 */