From c1178e49417bbea7f91b23f71c9ba957500da0ff Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=B8ren=20Sandmann=20Pedersen?= Date: Sun, 12 Jul 2009 21:37:16 -0400 Subject: [PATCH] Reformat pixman-timer.c --- pixman/pixman-timer.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pixman/pixman-timer.c b/pixman/pixman-timer.c index c995bbf..f5ae18e 100644 --- a/pixman/pixman-timer.c +++ b/pixman/pixman-timer.c @@ -39,10 +39,10 @@ dump_timers (void) for (timer = timers; timer != NULL; timer = timer->next) { printf ("%s: total: %llu n: %llu avg: %f\n", - timer->name, - timer->total, - timer->n_times, - timer->total / (double)timer->n_times); + timer->name, + timer->total, + timer->n_times, + timer->total / (double)timer->n_times); } } @@ -51,14 +51,14 @@ pixman_timer_register (pixman_timer_t *timer) { static int initialized; - int atexit(void (*function)(void)); + int atexit (void (*function)(void)); if (!initialized) { atexit (dump_timers); initialized = 1; } - + timer->next = timers; timers = timer; } -- 2.7.4