diff options
author | Andrea Shepard <andrea@torproject.org> | 2016-06-09 11:50:25 +0000 |
---|---|---|
committer | Andrea Shepard <andrea@torproject.org> | 2016-06-09 11:50:25 +0000 |
commit | 9eeaeddbb1aa04248841890e244c4714f165522d (patch) | |
tree | bbc12338bf35d7b4890fdaf9076144f05f416adb /src/test/test-timers.c | |
parent | 1e330e1947b750be12b217c944534f9284509751 (diff) | |
download | tor-9eeaeddbb1aa04248841890e244c4714f165522d.tar.gz tor-9eeaeddbb1aa04248841890e244c4714f165522d.zip |
Reduce make check-spaces noise
Diffstat (limited to 'src/test/test-timers.c')
-rw-r--r-- | src/test/test-timers.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/test-timers.c b/src/test/test-timers.c index 8f5ba7b78a..0196ec1fef 100644 --- a/src/test/test-timers.c +++ b/src/test/test-timers.c @@ -23,10 +23,10 @@ #define MAX_DURATION 30 #define N_DISABLE 5 -static struct timeval fire_at[N_TIMERS] = {{0,0}}; +static struct timeval fire_at[N_TIMERS] = { {0,0} }; static int is_disabled[N_TIMERS] = {0}; static int fired[N_TIMERS] = {0}; -static struct timeval difference[N_TIMERS] = {{0,0}}; +static struct timeval difference[N_TIMERS] = { {0,0} }; static tor_timer_t *timers[N_TIMERS] = {NULL}; static int n_active_timers = 0; @@ -131,3 +131,4 @@ main(int argc, char **argv) timers_shutdown(); return ret; } + |