diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2015-06-28 18:54:27 +0900 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2015-06-28 19:05:14 +0900 |
commit | fc7f6e331d7d35f7f24f72a62e4907887e7bcb11 (patch) | |
tree | 5d6217665c7159952dade65e733b7b6879647610 | |
parent | 05d9e17fa99febb3ec024fbd6cdc323985fd0e6e (diff) |
Fix function declaration style to respect the coding standard.
-rw-r--r-- | contrib/pgbench/pgbench.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c index dbafd60990c..4e22695f8fd 100644 --- a/contrib/pgbench/pgbench.c +++ b/contrib/pgbench/pgbench.c @@ -876,8 +876,7 @@ clientDone(CState *st, bool ok) return false; /* always false */ } -static -void +static void agg_vals_init(AggVals *aggs, instr_time start) { /* basic counters */ |