libsysprof-analyze: rename :id to :fs-spec to match fstab

This is the description of the field in fstab(5) so we want to match that
so it's a bit more clear what we're keying off of when translating to a
mount device we can access on the host.
This commit is contained in:
Christian Hergert
2023-05-19 10:17:03 -07:00
parent 9e2ddae05c
commit 90519fe830
2 changed files with 13 additions and 13 deletions

View File

@ -28,10 +28,10 @@ G_BEGIN_DECLS
G_DECLARE_FINAL_TYPE (SysprofMountDevice, sysprof_mount_device, SYSPROF, MOUNT_DEVICE, GObject)
SysprofMountDevice *sysprof_mount_device_new (GRefString *id,
SysprofMountDevice *sysprof_mount_device_new (GRefString *fs_spec,
GRefString *mount_point,
GRefString *subvolume);
const char *sysprof_mount_device_get_id (SysprofMountDevice *self);
const char *sysprof_mount_device_get_fs_spec (SysprofMountDevice *self);
const char *sysprof_mount_device_get_mount_point (SysprofMountDevice *self);
const char *sysprof_mount_device_get_subvolume (SysprofMountDevice *self);