if (!mtab) {
mtab = mnt_new_table();
if (!mtab)
- err(FSCK_EX_ERROR, ("failed to initialize libmount table"));
+ err(FSCK_EX_ERROR, _("failed to initialize libmount table"));
mnt_table_set_cache(mtab, mntcache);
mnt_table_parse_mtab(mtab, NULL);
}
fstab = mnt_new_table();
if (!fstab)
- err(FSCK_EX_ERROR, ("failed to initialize libmount table"));
+ err(FSCK_EX_ERROR, _("failed to initialize libmount table"));
mnt_table_set_parser_errcb(fstab, parser_errcb);
mnt_table_set_cache(fstab, mntcache);
}
if (d->d_npartitions > BSD_MAXPARTITIONS)
- fdisk_warnx(cxt, ("Too many partitions (%d, maximum is %d)."),
+ fdisk_warnx(cxt, _("Too many partitions (%d, maximum is %d)."),
d->d_npartitions, BSD_MAXPARTITIONS);
/* let's follow in-PT geometry */
if (rename(tmp_file, orig_file) == -1) {
int errsv = errno;
errx(EXIT_FAILURE,
- ("cannot write %s: %s (your changes are still in %s)"),
+ _("cannot write %s: %s (your changes are still in %s)"),
orig_file, strerror(errsv), tmp_file);
}
unlink(tmp_file);