Remove extra comma at end of enum list

C99-specific feature, and wasn't intentional in the first place.

Per buildfarm member mylodon
This commit is contained in:
Magnus Hagander 2016-10-23 15:56:07 +02:00
parent 56c7d8d455
commit d97a59a4c5

View File

@ -16,7 +16,7 @@ typedef enum
{
CLOSE_NORMAL,
CLOSE_UNLINK,
CLOSE_NO_RENAME,
CLOSE_NO_RENAME
} WalCloseMethod;
typedef struct WalWriteMethod WalWriteMethod;