From: Karel Zak Date: Mon, 14 Jun 2010 16:15:29 +0000 (+0200) Subject: textual: fix typos X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e350e48c1e1be6bf0d7bfa731d9ef47e309390e;p=util-linux textual: fix typos Reported-by: Petr Pisar Signed-off-by: Karel Zak --- diff --git a/disk-utils/mkswap.c b/disk-utils/mkswap.c index 09a9a0a4..acfd513e 100644 --- a/disk-utils/mkswap.c +++ b/disk-utils/mkswap.c @@ -393,7 +393,7 @@ zap_bootbits(int fd, const char *devname, int force, int is_blkdev) if (!pr) die(_("unable to alloc new libblkid probe")); if (blkid_probe_set_device(pr, fd, 0, 0)) - die(_("unable to assign device to liblkid probe")); + die(_("unable to assign device to libblkid probe")); blkid_probe_enable_partitions(pr, 1); blkid_probe_enable_superblocks(pr, 0); diff --git a/misc-utils/findmnt.c b/misc-utils/findmnt.c index 7f166c8c..4138480f 100644 --- a/misc-utils/findmnt.c +++ b/misc-utils/findmnt.c @@ -561,7 +561,7 @@ int main(int argc, char *argv[]) direction = MNT_ITER_BACKWARD; else errx(EXIT_FAILURE, - _("unknown direction '%s')"), optarg); + _("unknown direction '%s'"), optarg); break; case 'e': flags |= FL_EVALUATE;