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

Commit d261adf

Browse files
committed
Fix ==-instead-of-= typo that gcc does its level best to point out.
Isn't anybody paying attention to warnings around here?
1 parent baeafa9 commit d261adf

File tree

1 file changed

+2
-2
lines changed
  • src/interfaces/ecpg/preproc

1 file changed

+2
-2
lines changed

src/interfaces/ecpg/preproc/pgc.l

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
*
1414
* IDENTIFICATION
15-
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.52 2000/03/03 09:56:03 meskes Exp $
15+
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.53 2000/03/08 22:03:12 tgl Exp $
1616
*
1717
*-------------------------------------------------------------------------
1818
*/
@@ -315,7 +315,7 @@ cppline {space}*#(.*\\{line_end})*.*
315315
}
316316

317317
{xqstart} {
318-
state_before == YYSTATE;
318+
state_before = YYSTATE;
319319
BEGIN(xq);
320320
startlit();
321321
}

0 commit comments

Comments
 (0)