1
0
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00

Fixed compile error

This commit is contained in:
James Booth 2012-12-01 18:47:50 +00:00
parent 1029c43002
commit 5a0121306d

View File

@ -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