From: Sergio Villar Senin Date: Tue, 23 Oct 2007 11:59:54 +0000 (+0000) Subject: * Removed an invalid indirection of a function call as Philip correctly suggested X-Git-Tag: git_migration_finished~2227 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=31b9640ab713898230a78f4755ae172143831db7;ds=sidebyside * Removed an invalid indirection of a function call as Philip correctly suggested pmo-trunk-r3561 --- diff --git a/src/maemo/modest-platform.c b/src/maemo/modest-platform.c index d848149..4bb23b1 100644 --- a/src/maemo/modest-platform.c +++ b/src/maemo/modest-platform.c @@ -1576,7 +1576,7 @@ modest_platform_check_and_wait_for_account_is_online(TnyAccount *account) GMainContext *context = NULL; /* g_main_context_new (); */ data->loop = g_main_loop_new (context, FALSE /* not running */); - g_timeout_add (1000, &on_timeout_check_account_is_online, data); + g_timeout_add (1000, on_timeout_check_account_is_online, data); /* This main loop will run until the idle handler has stopped it: */ g_main_loop_run (data->loop);