aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/trigger.c
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2015-08-15 17:25:00 +0200
committerAndres Freund <andres@anarazel.de>2015-08-15 17:25:00 +0200
commite95126cf048b08d7ff5eb72ec33737e9e27c08f8 (patch)
tree1a02049f9cd86282a5cf6e9f6aa57c55c4906466 /src/backend/commands/trigger.c
parentf9dec81a5493bc31fdbbf69b5fafe0d4452a38f1 (diff)
downloadpostgresql-e95126cf048b08d7ff5eb72ec33737e9e27c08f8.tar.gz
postgresql-e95126cf048b08d7ff5eb72ec33737e9e27c08f8.zip
Don't use function definitions looking like old-style ones.
This fixes a bunch of somewhat pedantic warnings with new compilers. Since by far the majority of other functions definitions use the (void) style it just seems to be consistent to do so as well in the remaining few places.
Diffstat (limited to 'src/backend/commands/trigger.c')
-rw-r--r--src/backend/commands/trigger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/trigger.c b/src/backend/commands/trigger.c
index 31091ba7f3e..d169027689a 100644
--- a/src/backend/commands/trigger.c
+++ b/src/backend/commands/trigger.c
@@ -3226,7 +3226,7 @@ static SetConstraintState SetConstraintStateAddItem(SetConstraintState state,
* Gets the current query fdw tuplestore and initializes it if necessary
*/
static Tuplestorestate *
-GetCurrentFDWTuplestore()
+GetCurrentFDWTuplestore(void)
{
Tuplestorestate *ret;