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:04:39 +0900 |
commit | 9a437994400f5fdadac103fc5df0c5d622d5c8be (patch) | |
tree | f30a5e2d996912927619617cb54149a3194e45a3 | |
parent | ed6c8d73619a69c8751c8662242fdce22d31bc42 (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 c080c466915..f9e1549b23f 100644 --- a/contrib/pgbench/pgbench.c +++ b/contrib/pgbench/pgbench.c @@ -911,8 +911,7 @@ clientDone(CState *st, bool ok) return false; /* always false */ } -static -void +static void agg_vals_init(AggVals *aggs, instr_time start) { /* basic counters */ |