diff options
author | Dan Williams <dcbw@redhat.com> | 2010-06-22 01:58:41 -0700 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2010-06-22 01:58:41 -0700 |
commit | a60216f5f44d4ead2fd36a129dee789d2941b02e (patch) | |
tree | 2501729169dca2ed4668fa82bd92c5ec362bf401 | |
parent | 597f691eb8b12450d8f895f7a25d724eeba6c277 (diff) |
huawei: use g_timeout_add_seconds()
-rw-r--r-- | plugins/mm-plugin-huawei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mm-plugin-huawei.c b/plugins/mm-plugin-huawei.c index b4c97d6e..2993689d 100644 --- a/plugins/mm-plugin-huawei.c +++ b/plugins/mm-plugin-huawei.c @@ -237,7 +237,7 @@ supports_port (MMPluginBase *base, add_regex (info->serial, "\\r\\n\\^BOOT:.+\\r\\n", task); add_regex (info->serial, "\\r\\r\\^BOOT:.+\\r\\r", task); - info->id = g_timeout_add (5000, probe_secondary_timeout, task); + info->id = g_timeout_add_seconds (7, probe_secondary_timeout, task); g_object_set_data_full (G_OBJECT (task), TAG_SUPPORTS_INFO, info, huawei_supports_info_destroy); |