diff options
author | Andres Freund <andres@anarazel.de> | 2015-08-15 17:25:00 +0200 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2015-08-15 17:25:00 +0200 |
commit | e95126cf048b08d7ff5eb72ec33737e9e27c08f8 (patch) | |
tree | 1a02049f9cd86282a5cf6e9f6aa57c55c4906466 /src/pl/plperl/plperl.c | |
parent | f9dec81a5493bc31fdbbf69b5fafe0d4452a38f1 (diff) |
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/pl/plperl/plperl.c')
-rw-r--r-- | src/pl/plperl/plperl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plperl/plperl.c b/src/pl/plperl/plperl.c index ae0ba19814f..296d17dbbb3 100644 --- a/src/pl/plperl/plperl.c +++ b/src/pl/plperl/plperl.c @@ -2993,7 +2993,7 @@ plperl_hash_from_tuple(HeapTuple tuple, TupleDesc tupdesc) static void -check_spi_usage_allowed() +check_spi_usage_allowed(void) { /* see comment in plperl_fini() */ if (plperl_ending) |