diff options
-rw-r--r-- | plugins/simtech/mm-broadband-modem-simtech.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/simtech/mm-broadband-modem-simtech.c b/plugins/simtech/mm-broadband-modem-simtech.c index 488d4225..529e4438 100644 --- a/plugins/simtech/mm-broadband-modem-simtech.c +++ b/plugins/simtech/mm-broadband-modem-simtech.c @@ -135,7 +135,7 @@ parent_setup_unsolicited_events_ready (MMIfaceModem3gpp *self, else { /* Our own setup now */ set_unsolicited_events_handlers (MM_BROADBAND_MODEM_SIMTECH (self), TRUE); - g_simple_async_result_set_op_res_gboolean (G_SIMPLE_ASYNC_RESULT (res), TRUE); + g_simple_async_result_set_op_res_gboolean (simple, TRUE); } g_simple_async_result_complete (simple); @@ -171,7 +171,7 @@ parent_cleanup_unsolicited_events_ready (MMIfaceModem3gpp *self, if (!iface_modem_3gpp_parent->cleanup_unsolicited_events_finish (self, res, &error)) g_simple_async_result_take_error (simple, error); else - g_simple_async_result_set_op_res_gboolean (G_SIMPLE_ASYNC_RESULT (res), TRUE); + g_simple_async_result_set_op_res_gboolean (simple, TRUE); g_simple_async_result_complete (simple); g_object_unref (simple); } |