summaryrefslogtreecommitdiffstats
path: root/disk-utils/fdisk-list.c
diff options
context:
space:
mode:
authorBenno Schulenberg2015-01-18 21:17:09 +0100
committerKarel Zak2015-01-26 11:17:55 +0100
commit54fefa078e54718acbd2489b0f92328f272f9a3c (patch)
treeb568d511dcdfba35be9bd36ba15c65ec9d7e78a3 /disk-utils/fdisk-list.c
parentdocs: fix grammar and punctuation and typos in 2.26 release notes (diff)
downloadkernel-qcow2-util-linux-54fefa078e54718acbd2489b0f92328f272f9a3c.tar.gz
kernel-qcow2-util-linux-54fefa078e54718acbd2489b0f92328f272f9a3c.tar.xz
kernel-qcow2-util-linux-54fefa078e54718acbd2489b0f92328f272f9a3c.zip
textual: fix spellos and inconsistencies in several program messages
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'disk-utils/fdisk-list.c')
-rw-r--r--disk-utils/fdisk-list.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/disk-utils/fdisk-list.c b/disk-utils/fdisk-list.c
index 824eb48b8..c65b8b475 100644
--- a/disk-utils/fdisk-list.c
+++ b/disk-utils/fdisk-list.c
@@ -104,13 +104,13 @@ void list_disklabel(struct fdisk_context *cxt)
itr = fdisk_new_iter(FDISK_ITER_FORWARD);
if (!itr) {
- fdisk_warn(cxt, _("faild to allocate iterator"));
+ fdisk_warn(cxt, _("failed to allocate iterator"));
goto done;
}
out = scols_new_table();
if (!out) {
- fdisk_warn(cxt, _("faild to allocate output table"));
+ fdisk_warn(cxt, _("failed to allocate output table"));
goto done;
}
@@ -151,7 +151,7 @@ void list_disklabel(struct fdisk_context *cxt)
struct libscols_line *ln = scols_table_new_line(out, NULL);
if (!ln) {
- fdisk_warn(cxt, _("faild to allocate output line"));
+ fdisk_warn(cxt, _("failed to allocate output line"));
goto done;
}