summaryrefslogtreecommitdiffstats
path: root/source/timings.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2020-02-02 13:56:37 +0100
committerDave Davenport <qball@gmpclient.org>2020-02-02 13:56:37 +0100
commitb1692899969b89b8478e403957e266437e07d9e9 (patch)
tree0b2a7665e151e3ffe2f8ce8c32f2e3ad2f0aac91 /source/timings.c
parent83c2e467d5b34f9e74e2c55b1e9df2b715be175e (diff)
Indent all the code.
Diffstat (limited to 'source/timings.c')
-rw-r--r--source/timings.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/source/timings.c b/source/timings.c
index 410592b2..db004656 100644
--- a/source/timings.c
+++ b/source/timings.c
@@ -35,7 +35,7 @@
/**
* Timer used to calculate time stamps.
*/
-GTimer *global_timer = NULL;
+GTimer *global_timer = NULL;
/**
* Last timestamp made.
*/
@@ -58,8 +58,7 @@ void rofi_timings_tick ( const char *file, char const *str, int line, char const
void rofi_timings_quit ( void )
{
- double now = g_timer_elapsed ( global_timer, NULL );
- g_debug ( "%4.6f (%2.6f): Stopped", now, 0.0 );
- g_timer_destroy ( global_timer );
+ double now = g_timer_elapsed ( global_timer, NULL );
+ g_debug ( "%4.6f (%2.6f): Stopped", now, 0.0 );
+ g_timer_destroy ( global_timer );
}
-