Use g_timeout_add_seconds for some long timeouts

https://bugzilla.gnome.org/show_bug.cgi?id=692618
This commit is contained in:
Matthias Clasen
2013-02-03 10:21:20 -05:00
parent 1a7b4b42a8
commit 50850cdf98
2 changed files with 7 additions and 7 deletions

View File

@@ -176,7 +176,7 @@ main (int argc, char *argv[])
#endif
alive = 2;
g_timeout_add (30000, quit_loop, main_loop);
g_timeout_add_seconds (30, quit_loop, main_loop);
#ifdef TEST_THREAD
g_thread_create (test_thread, GINT_TO_POINTER (10), FALSE, NULL);