diff options
| author | Peter Eisentraut | 2010-03-23 22:12:06 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2010-03-23 22:12:06 +0000 |
| commit | 8a367d441b5abc0adc07522fc58783aa70e84143 (patch) | |
| tree | 6f08981fcfcabdbfed8a8c46ee41463918e6f3a6 /src | |
| parent | 7e2411429c248c137de93b421e2931f33978af05 (diff) | |
Remove useless double assignment
GCC 4.5 complained about it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/interfaces/ecpg/preproc/ecpg.addons | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/ecpg.addons b/src/interfaces/ecpg/preproc/ecpg.addons index 8d33444e5c7..818ef540c2c 100644 --- a/src/interfaces/ecpg/preproc/ecpg.addons +++ b/src/interfaces/ecpg/preproc/ecpg.addons @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.addons,v 1.17 2010/03/21 11:56:45 meskes Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.addons,v 1.18 2010/03/23 22:12:06 petere Exp $ */ ECPG: stmtClosePortalStmt block { if (INFORMIX_MODE) @@ -363,7 +363,7 @@ ECPG: table_refselect_with_parens addon ECPG: TypenameSimpleTypenameopt_array_bounds block { $$ = cat2_str($1, $2.str); } ECPG: TypenameSETOFSimpleTypenameopt_array_bounds block - { $$ = $$ = cat_str(3, make_str("setof"), $2, $3.str); } + { $$ = cat_str(3, make_str("setof"), $2, $3.str); } ECPG: opt_array_boundsopt_array_bounds'['']' block { $$.index1 = $1.index1; |
