1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-07 04:15:32 +00:00

mm-provider: Avoid using g_error()

First steps in closing #4.
This commit is contained in:
Evangelos Ribeiro Tzaras 2022-09-02 12:20:47 +02:00
parent e7c3775f42
commit 1016505357

View file

@ -278,9 +278,10 @@ mm_manager_new_cb (GDBusConnection *connection,
self->mm = mm_manager_new_finish (res, &error);
if (!self->mm) {
g_error ("Error creating ModemManager Manager: %s",
error->message);
g_assert_not_reached ();
g_warning ("Error creating ModemManager Manager: %s",
error->message);
update_status (self);
return;
}