Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f30a1d0

Browse files
committed
Add missing semicolon, per grip from Alex Hunsaker.
1 parent 8aad333 commit f30a1d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/ecpg/preproc/ecpg.trailer

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.trailer,v 1.1 2008/11/14 10:03:33 meskes Exp $ */
1+
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.trailer,v 1.2 2008/11/15 22:18:05 adunstan Exp $ */
22

33
statements: /*EMPTY*/
44
| statements statement
@@ -1852,7 +1852,7 @@ ecpg_sconst:
18521852
ecpg_xconst: XCONST { $$ = make_name(); } ;
18531853

18541854
ecpg_ident: IDENT { $$ = make_name(); }
1855-
| CSTRING { $$ = make3_str(make_str("\""), $1, make_str("\"")) }
1855+
| CSTRING { $$ = make3_str(make_str("\""), $1, make_str("\"")); }
18561856
| UIDENT { $$ = $1; }
18571857
;
18581858

0 commit comments

Comments
 (0)