]> granicus.if.org Git - postgresql/commitdiff
Remove trailing commas in enums.
authorAndres Freund <andres@anarazel.de>
Fri, 15 Apr 2016 01:54:06 +0000 (18:54 -0700)
committerAndres Freund <andres@anarazel.de>
Fri, 15 Apr 2016 02:25:17 +0000 (19:25 -0700)
These aren't valid C89. Found thanks to gcc's -Wc90-c99-compat. These
exist in differing places in most supported branches.

src/include/catalog/objectaccess.h

index 8f520223015fa3c0e2a81971a8e2d2aa3dc2c34d..a87c60f8c84d727df757780a5c59f0cf7140366e 100644 (file)
@@ -23,7 +23,7 @@
  */
 typedef enum ObjectAccessType
 {
-       OAT_POST_CREATE,
+       OAT_POST_CREATE
 } ObjectAccessType;
 
 /*