trivial: Fix typo when setting the parent ID

This commit is contained in:
Richard Hughes 2019-05-07 10:25:32 +01:00
parent 8238de9995
commit f5d799df19

View File

@ -398,7 +398,7 @@ fu_device_set_parent (FuDevice *self, FuDevice *parent)
/* this is what goes over D-Bus */ /* this is what goes over D-Bus */
fwupd_device_set_parent_id (FWUPD_DEVICE (self), fwupd_device_set_parent_id (FWUPD_DEVICE (self),
self != NULL ? fu_device_get_id (parent) : NULL); parent != NULL ? fu_device_get_id (parent) : NULL);
} }
/** /**