mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-11-15 07:38:12 +00:00
context: Lower severity of warning if USB fails to initialise
This is unlikely to happen in a real world scenario and currently breaks running the CI test (not the umockdev based ones) while building the flatpak. Lower the severity to avoid aborting because there is a warning.
This commit is contained in:
@@ -290,7 +290,7 @@ fp_context_init (FpContext *self)
|
|||||||
priv->usb_ctx = g_usb_context_new (&error);
|
priv->usb_ctx = g_usb_context_new (&error);
|
||||||
if (!priv->usb_ctx)
|
if (!priv->usb_ctx)
|
||||||
{
|
{
|
||||||
fp_warn ("Could not initialise USB Subsystem: %s", error->message);
|
g_message ("Could not initialise USB Subsystem: %s", error->message);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user