]> granicus.if.org Git - postgresql/commitdiff
Remove extraneous comma to satisfy picky compiler
authorAndrew Dunstan <andrew@dunslane.net>
Fri, 7 Apr 2017 03:28:14 +0000 (23:28 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Fri, 7 Apr 2017 03:28:14 +0000 (23:28 -0400)
per buildfarm

src/backend/utils/adt/jsonfuncs.c

index 70edd42c8d697cfa1ed44737d4fd8eae7ef87963..3966e43dd5d64d1bc68f298fafa7bdc540a969a9 100644 (file)
@@ -185,7 +185,7 @@ typedef enum TypeCat
        TYPECAT_SCALAR = 's',
        TYPECAT_ARRAY = 'a',
        TYPECAT_COMPOSITE = 'c',
-       TYPECAT_DOMAIN = 'd',
+       TYPECAT_DOMAIN = 'd'
 } TypeCat;
 
 /* these two are stolen from hstore / record_out, used in populate_record* */