diff options
author | Heikki Linnakangas | 2015-03-31 12:12:27 +0000 |
---|---|---|
committer | Heikki Linnakangas | 2015-03-31 12:12:27 +0000 |
commit | 1d0db8de043c28c1e665451663ec101da5adc5ab (patch) | |
tree | 5eae21018c2202cede3fbd3888b0934276edb74b /contrib | |
parent | fa1e5afa8a26d467aec7c8b36a0b749b690f636c (diff) |
Remove spurious semicolons.
Petr Jelinek
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/postgres_fdw/deparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/deparse.c b/contrib/postgres_fdw/deparse.c index 59cb053e4f4..94fab18c425 100644 --- a/contrib/postgres_fdw/deparse.c +++ b/contrib/postgres_fdw/deparse.c @@ -317,7 +317,7 @@ foreign_expr_walker(Node *node, break; case T_ArrayRef: { - ArrayRef *ar = (ArrayRef *) node;; + ArrayRef *ar = (ArrayRef *) node; /* Assignment should not be in restrictions. */ if (ar->refassgnexpr != NULL) |