aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mm-broadband-bearer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-broadband-bearer.c b/src/mm-broadband-bearer.c
index 00a7ba98..de762d76 100644
--- a/src/mm-broadband-bearer.c
+++ b/src/mm-broadband-bearer.c
@@ -1442,7 +1442,7 @@ cgact_data_ready (MMBaseModem *modem,
GError *error = NULL;
/* Ignore errors for now */
- mm_base_modem_at_command_full_finish (MM_BASE_MODEM (modem), res, &error);
+ mm_base_modem_at_command_full_finish (modem, res, &error);
if (error) {
mm_dbg ("PDP context deactivation failed (not fatal): %s", error->message);
g_error_free (error);
@@ -1551,7 +1551,7 @@ cgact_ready (MMBaseModem *modem,
{
GError *error = NULL;
- mm_base_modem_at_command_full_finish (MM_BASE_MODEM (modem), res, &error);
+ mm_base_modem_at_command_full_finish (modem, res, &error);
if (!error)
ctx->cgact_sent = TRUE;
else {