X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fmain.c;h=88660de05842e12fc4258c58da3a45f13547bb70;hb=26efd1aa493c9c25cfbd167f225d48203ec8620b;hp=a8fb3b36f654a93e4157c46baa594108dbf03153;hpb=2fb89f607219e3893d76007e9920337f7676eb25;p=ncmpc.git diff --git a/src/main.c b/src/main.c index a8fb3b3..88660de 100644 --- a/src/main.c +++ b/src/main.c @@ -218,8 +218,8 @@ mpdclient_connected_callback(void) doupdate(); /* try again after 30 seconds */ - reconnect_source_id = g_timeout_add(30000, - timer_reconnect, NULL); + reconnect_source_id = + g_timeout_add_seconds(30, timer_reconnect, NULL); return; } #endif @@ -241,8 +241,7 @@ mpdclient_failed_callback(void) assert(reconnect_source_id == 0); /* try again in 5 seconds */ - reconnect_source_id = g_timeout_add(5000, - timer_reconnect, NULL); + reconnect_source_id = g_timeout_add_seconds(5, timer_reconnect, NULL); } void @@ -252,7 +251,7 @@ mpdclient_lost_callback(void) screen_update(mpd); - reconnect_source_id = g_timeout_add(1000, timer_reconnect, NULL); + reconnect_source_id = g_timeout_add_seconds(1, timer_reconnect, NULL); } /** @@ -427,7 +426,8 @@ main(int argc, const char *argv[]) auto_update_timer(); #ifndef NCMPC_MINI - check_key_bindings_source_id = g_timeout_add(10000, timer_check_key_bindings, NULL); + check_key_bindings_source_id = + g_timeout_add_seconds(10, timer_check_key_bindings, NULL); #endif screen_paint(mpd);