about summary refs log tree commit diff stats
path: root/src/windows.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-12-01 18:47:50 +0000
committerJames Booth <boothj5@gmail.com>2012-12-01 18:47:50 +0000
commit5a0121306d19378f257eb37dc46b568c236110d0 (patch)
tree740c59be6737906d9b22852ab0f6fa16e24e5058 /src/windows.c
parent1029c430020dcf6731a4936669d32d00e2e24822 (diff)
downloadprofani-tty-5a0121306d19378f257eb37dc46b568c236110d0.tar.gz
Fixed compile error
Diffstat (limited to 'src/windows.c')
-rw-r--r--src/windows.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windows.c b/src/windows.c
index 87318766..93e6980e 100644
--- a/src/windows.c
+++ b/src/windows.c
@@ -185,7 +185,7 @@ ui_get_idle_time(void)
 
     return result;
 #else
-    gdouble seconds_elapsed = g_timer_elapsed(ui_idle_time);
+    gdouble seconds_elapsed = g_timer_elapsed(ui_idle_time, NULL);
     unsigned long ms_elapsed = seconds_elapsed * 1000.0;
     return ms_elapsed;
 #endif