if (!FDISK_IS_UNDEF(start)) {
if (start < le64_to_cpu(gpt->pheader->first_usable_lba)) {
- fdisk_warnx(cxt, _("The begin of the partition overflows FirstUsableLBA."));
+ fdisk_warnx(cxt, _("The start of the partition understeps FirstUsableLBA."));
return -EINVAL;
}
e->lba_start = cpu_to_le64(start);
}
if (!FDISK_IS_UNDEF(end)) {
if (end > le64_to_cpu(gpt->pheader->last_usable_lba)) {
- fdisk_warnx(cxt, _("The end of the partition overflows LastUsableLBA."));
+ fdisk_warnx(cxt, _("The end of the partition oversteps LastUsableLBA."));
return -EINVAL;
}
e->lba_end = cpu_to_le64(end);