Remove extraneous comma to satisfy picky compiler

per buildfarm
This commit is contained in:
Andrew Dunstan 2017-04-06 23:28:14 -04:00
parent cf35346e81
commit 88dd4e4831
1 changed files with 1 additions and 1 deletions

View 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* */