diff options
author | Ben Chan <benchan@chromium.org> | 2013-12-04 13:19:26 -0800 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2013-12-05 13:03:29 -0600 |
commit | 9a72f90cf7d36092be4fdb8fed35ac8146a97cc3 (patch) | |
tree | 523f5a6897b19949b9980cf1e5c6e0be85f5a93b /cli/mmcli-common.c | |
parent | 2db3df9d934acf01e93b11b6bcb1fc5a34f7b25a (diff) |
cli: fix source tag of GSimpleAsyncResult objects
Diffstat (limited to 'cli/mmcli-common.c')
-rw-r--r-- | cli/mmcli-common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/mmcli-common.c b/cli/mmcli-common.c index 016d8bcf..f7182d5c 100644 --- a/cli/mmcli-common.c +++ b/cli/mmcli-common.c @@ -476,7 +476,7 @@ mmcli_get_bearer (GDBusConnection *connection, ctx->result = g_simple_async_result_new (G_OBJECT (connection), callback, user_data, - mmcli_get_modem); + mmcli_get_bearer); mmcli_get_manager (connection, cancellable, (GAsyncReadyCallback)get_bearer_manager_ready, @@ -714,7 +714,7 @@ mmcli_get_sim (GDBusConnection *connection, ctx->result = g_simple_async_result_new (G_OBJECT (connection), callback, user_data, - mmcli_get_modem); + mmcli_get_sim); mmcli_get_manager (connection, cancellable, (GAsyncReadyCallback)get_sim_manager_ready, @@ -977,7 +977,7 @@ mmcli_get_sms (GDBusConnection *connection, ctx->result = g_simple_async_result_new (G_OBJECT (connection), callback, user_data, - mmcli_get_modem); + mmcli_get_sms); mmcli_get_manager (connection, cancellable, (GAsyncReadyCallback)get_sms_manager_ready, |