diff options
| author | Benno Schulenberg <bensberg@justemail.net> | 2015-01-18 21:17:09 +0100 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2015-01-26 11:17:55 +0100 |
| commit | 54fefa078e54718acbd2489b0f92328f272f9a3c (patch) | |
| tree | b568d511dcdfba35be9bd36ba15c65ec9d7e78a3 /disk-utils/cfdisk.c | |
| parent | 8701ac3083977c8d511615e4bd23b9a505685143 (diff) | |
| download | util-linux-54fefa078e54718acbd2489b0f92328f272f9a3c.tar.gz | |
textual: fix spellos and inconsistencies in several program messages
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'disk-utils/cfdisk.c')
| -rw-r--r-- | disk-utils/cfdisk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/disk-utils/cfdisk.c b/disk-utils/cfdisk.c index 1d4e2d579e..509fbbd635 100644 --- a/disk-utils/cfdisk.c +++ b/disk-utils/cfdisk.c @@ -1660,7 +1660,7 @@ static int ui_script_read(struct cfdisk *cf) errno = 0; sc = fdisk_new_script_from_file(cf->cxt, buf); if (!sc && errno) - ui_warn(_("Cannot open: %s"), buf); + ui_warn(_("Cannot open %s"), buf); else if (!sc) ui_warnx(_("Failed to parse script file %s"), buf); else if (fdisk_apply_script(cf->cxt, sc) != 0) @@ -1701,7 +1701,7 @@ static int ui_script_write(struct cfdisk *cf) DBG(UI, ul_debug("writing dump into: '%s'", buf)); f = fopen(buf, "w"); if (!f) { - ui_warn(_("Cannot open: %s"), buf); + ui_warn(_("Cannot open %s"), buf); rc = -errno; goto done; } |
