Skip to content
Snippets Groups Projects
Commit 27fa7ff6 authored by Julian Bouzas's avatar Julian Bouzas
Browse files

reserve-device: show info instead of warning when devices could not be acquired

parent c97eccea
No related branches found
No related tags found
No related merge requests found
......@@ -43,14 +43,13 @@ static void
on_reservation_acquired (GObject *obj, GAsyncResult *res, gpointer user_data)
{
WpReserveDevice *self = user_data;
WpDbusDeviceReservation *reserv = WP_DBUS_DEVICE_RESERVATION (obj);
g_autoptr (GError) error = NULL;
g_autoptr (GError) e = NULL;
g_autoptr (WpProxy) device = NULL;
g_autoptr (WpSpaPod) profile = NULL;
/* Finish */
if (!wp_dbus_device_reservation_async_finish (reserv, res, &error)) {
g_warning ("%s", error->message);
if (!wp_dbus_device_reservation_async_finish (self->reservation, res, &e)) {
wp_info_object (self, "could not own device: %s", e->message);
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment