Remove extra comma at end of enum list
authorMagnus Hagander <[email protected]>
Sun, 23 Oct 2016 13:56:07 +0000 (15:56 +0200)
committerMagnus Hagander <[email protected]>
Sun, 23 Oct 2016 13:57:25 +0000 (15:57 +0200)
C99-specific feature, and wasn't intentional in the first place.

Per buildfarm member mylodon

src/bin/pg_basebackup/walmethods.h

index fa58f812f67fcee8e359e3254dd2f0a0caaecc10..8a006fda7fd1cf5548f2a6b9b69344f9d2fac021 100644 (file)
@@ -16,7 +16,7 @@ typedef enum
 {
    CLOSE_NORMAL,
    CLOSE_UNLINK,
-   CLOSE_NO_RENAME,
+   CLOSE_NO_RENAME
 }  WalCloseMethod;
 
 typedef struct WalWriteMethod WalWriteMethod;