diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2019-09-23 18:08:38 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-09-23 18:14:23 +0200 |
commit | dcf50efdd51e64e7a6bf3a65986434aa9a35d0bb (patch) | |
tree | 46f67da660e7f72c8162a238beed2829b2e1a095 | |
parent | a1148f878b034bbb7744a32836ab5975d0d5e00d (diff) |
ublox: fix calling setup_unsolicited_events_finish()
-rw-r--r-- | plugins/ublox/mm-broadband-modem-ublox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ublox/mm-broadband-modem-ublox.c b/plugins/ublox/mm-broadband-modem-ublox.c index 509c4c6d..d27599bb 100644 --- a/plugins/ublox/mm-broadband-modem-ublox.c +++ b/plugins/ublox/mm-broadband-modem-ublox.c @@ -1208,8 +1208,8 @@ parent_voice_setup_unsolicited_events_ready (MMIfaceModemVoice *self, { GError *error = NULL; - if (!iface_modem_voice_parent->cleanup_unsolicited_events_finish (self, res, &error)) { - mm_warn ("Couldn't cleanup parent voice unsolicited events: %s", error->message); + if (!iface_modem_voice_parent->setup_unsolicited_events_finish (self, res, &error)) { + mm_warn ("Couldn't setup parent voice unsolicited events: %s", error->message); g_error_free (error); } |