The field "First LBA" is confusing; let's use "First usable LBA" as
it's the official UEFI name for the field.
Addresses: https://github.com/util-linux/util-linux/issues/1554
Signed-off-by: Karel Zak <kzak@redhat.com>
rc = -ENOMEM;
break;
case GPT_LABELITEM_FIRSTLBA:
- item->name = _("First LBA");
+ item->name = _("First usable LBA");
item->type = 'j';
item->data.num64 = le64_to_cpu(h->first_usable_lba);
break;
case GPT_LABELITEM_LASTLBA:
- item->name = _("Last LBA");
+ item->name = _("Last usable LBA");
item->type = 'j';
item->data.num64 = le64_to_cpu(h->last_usable_lba);
break;