Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8212625

Browse files
committed
Fix placement of "static".
Various buildfarm critters were complaining about pgbench.c:304:1: warning: 'static' is not at beginning of declaration [-Wold-style-declaration] Evidently a thinko in 720b0ea.
1 parent 0b1fe14 commit 8212625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pgbench/pgbench.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ static const char *progname;
301301

302302
#define WSEP '@' /* weight separator */
303303

304-
volatile static sig_atomic_t timer_exceeded = false; /* flag from signal
304+
static volatile sig_atomic_t timer_exceeded = false; /* flag from signal
305305
* handler */
306306

307307
/*

0 commit comments

Comments
 (0)