From ae99b57b2a4a20a1a92b4d478c12482c8d2be48d Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Tue, 1 Nov 2022 13:13:50 +0000 Subject: [PATCH] trivial: Fix over-constification in fu_udev_device_get_siblings_with_subsystem() --- 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 7c1781d36..7c153a77b 100644 --- a/libfwupdplugin/fu-udev-device.c +++ b/libfwupdplugin/fu-udev-device.c @@ -1971,7 +1971,7 @@ fu_udev_device_get_devtype(FuUdevDevice *self) * Since: 1.6.0 */ GPtrArray * -fu_udev_device_get_siblings_with_subsystem(FuUdevDevice *self, const gchar *const subsystem) +fu_udev_device_get_siblings_with_subsystem(FuUdevDevice *self, const gchar *subsystem) { g_autoptr(GPtrArray) out = g_ptr_array_new_with_free_func(g_object_unref);