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

Commit 0634c01

Browse files
committed
Add missing semicolon, per Johann Uhrmann.
Avoids warnings from newer bisons.
1 parent 4377a9a commit 0634c01

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/interfaces/ecpg/preproc/preproc.y

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.262 2003/10/06 06:44:55 meskes Exp $ */
1+
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.263 2003/10/22 16:43:42 tgl Exp $ */
22

33
/* Copyright comment */
44
%{
@@ -5248,6 +5248,7 @@ execstring: char_variable
52485248

52495249
prepared_name: name { $$ = make3_str(make_str("\""), $1, make_str("\"")); }
52505250
| char_variable { $$ = $1; }
5251+
;
52515252

52525253
/*
52535254
* the exec sql free command to deallocate a previously

0 commit comments

Comments
 (0)