Skip to content
Snippets Groups Projects
Commit f30a1d04 authored by Andrew Dunstan's avatar Andrew Dunstan
Browse files

Add missing semicolon, per grip from Alex Hunsaker.

parent 8aad333f
No related branches found
No related tags found
No related merge requests found
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.trailer,v 1.1 2008/11/14 10:03:33 meskes Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.trailer,v 1.2 2008/11/15 22:18:05 adunstan Exp $ */
statements: /*EMPTY*/
| statements statement
......@@ -1852,7 +1852,7 @@ ecpg_sconst:
ecpg_xconst: XCONST { $$ = make_name(); } ;
ecpg_ident: IDENT { $$ = make_name(); }
| CSTRING { $$ = make3_str(make_str("\""), $1, make_str("\"")) }
| CSTRING { $$ = make3_str(make_str("\""), $1, make_str("\"")); }
| UIDENT { $$ = $1; }
;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment