aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2020-01-09 12:34:28 +0100
committerAleksander Morgado <aleksander@aleksander.es>2020-02-12 09:41:10 +0000
commit634bb1caac878c7e26a6b5179f779ffd34478622 (patch)
tree3fc3883ac06fc715ee02acb661c2fd56035281ce /src
parentb6add181572d93d35cc53631f8c311ce33474f20 (diff)
base-sim: avoid using 'self' to refer to the modem
Diffstat (limited to 'src')
-rw-r--r--src/mm-base-sim.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-base-sim.c b/src/mm-base-sim.c
index 731fee3f..560db93d 100644
--- a/src/mm-base-sim.c
+++ b/src/mm-base-sim.c
@@ -155,13 +155,13 @@ handle_change_pin_context_free (HandleChangePinContext *ctx)
}
static void
-after_change_update_lock_info_ready (MMIfaceModem *self,
+after_change_update_lock_info_ready (MMIfaceModem *modem,
GAsyncResult *res,
HandleChangePinContext *ctx)
{
/* We just want to ensure that we tried to update the unlock
* retries, no big issue if it failed */
- mm_iface_modem_update_lock_info_finish (self, res, NULL);
+ mm_iface_modem_update_lock_info_finish (modem, res, NULL);
if (ctx->save_error) {
g_dbus_method_invocation_take_error (ctx->invocation, ctx->save_error);