diff options
author | Aleksander Morgado <aleksandermj@chromium.org> | 2024-05-06 11:30:21 +0000 |
---|---|---|
committer | Aleksander Morgado <aleksandermj@chromium.org> | 2024-05-06 13:45:39 +0000 |
commit | 218d6d2c5879e97d5f564aff8fa2546212decdfa (patch) | |
tree | b5f1a32b09e8a858efc37799e9d79205ed10e904 /src/plugins/simtech/mm-broadband-modem-simtech.c | |
parent | 4afb6a3172ee78c64507932d63b4a081e4c2ad2d (diff) |
shared-simtech: use G_DECLARE|DEFINE_INTERFACE() macros
Diffstat (limited to 'src/plugins/simtech/mm-broadband-modem-simtech.c')
-rw-r--r-- | src/plugins/simtech/mm-broadband-modem-simtech.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/simtech/mm-broadband-modem-simtech.c b/src/plugins/simtech/mm-broadband-modem-simtech.c index 49ac86e3..cdc822d8 100644 --- a/src/plugins/simtech/mm-broadband-modem-simtech.c +++ b/src/plugins/simtech/mm-broadband-modem-simtech.c @@ -41,7 +41,7 @@ static void iface_modem_init (MMIfaceModemInterface *iface); static void iface_modem_3gpp_init (MMIfaceModem3gppInterface *iface); static void iface_modem_location_init (MMIfaceModemLocationInterface *iface); static void iface_modem_voice_init (MMIfaceModemVoiceInterface *iface); -static void shared_simtech_init (MMSharedSimtech *iface); +static void shared_simtech_init (MMSharedSimtechInterface *iface); static MMIfaceModemInterface *iface_modem_parent; static MMIfaceModem3gppInterface *iface_modem_3gpp_parent; @@ -1523,7 +1523,7 @@ peek_parent_voice_interface (MMSharedSimtech *self) } static void -shared_simtech_init (MMSharedSimtech *iface) +shared_simtech_init (MMSharedSimtechInterface *iface) { iface->peek_parent_location_interface = peek_parent_location_interface; iface->peek_parent_voice_interface = peek_parent_voice_interface; |