From aebf33c4f6ed3fee8c469ddd9f9dcd4ce14e0bd7 Mon Sep 17 00:00:00 2001 From: Mario Limonciello Date: Wed, 7 Sep 2022 08:09:25 -0500 Subject: [PATCH] trivial: libfwupdplugin: fix an error return string --- libfwupdplugin/fu-udev-device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libfwupdplugin/fu-udev-device.c b/libfwupdplugin/fu-udev-device.c index a6b2bf623..0521b1ff8 100644 --- a/libfwupdplugin/fu-udev-device.c +++ b/libfwupdplugin/fu-udev-device.c @@ -1222,7 +1222,7 @@ fu_udev_device_set_physical_id(FuUdevDevice *self, const gchar *subsystems, GErr g_set_error_literal(error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND, - "failed to find DEVPATH"); + "failed to find DEVNAME"); return FALSE; } physical_id = g_strdup_printf("DEVNAME=%s", tmp);