]> git.ipfire.org Git - thirdparty/util-linux.git/blobdiff - misc-utils/wipefs.c
Merge branch 'PR/libmount-exec-errors' of github.com:karelzak/util-linux-work
[thirdparty/util-linux.git] / misc-utils / wipefs.c
index b89006f53b94bc47bc4c152bd90841cb74a8e380..148907f27b780e0ee9e5595bdd27a1a300c50959 100644 (file)
@@ -109,7 +109,7 @@ static const struct colinfo infos[] = {
        [COL_UUID]    = {"UUID",     4, 0, N_("partition/filesystem UUID")},
        [COL_LABEL]   = {"LABEL",    5, 0, N_("filesystem LABEL")},
        [COL_LEN]     = {"LENGTH",   6, 0, N_("magic string length")},
-       [COL_TYPE]    = {"TYPE",     4, 0, N_("superblok type")},
+       [COL_TYPE]    = {"TYPE",     4, 0, N_("superblock type")},
        [COL_OFFSET]  = {"OFFSET",   5, 0, N_("magic string offset")},
        [COL_USAGE]   = {"USAGE",    5, 0, N_("type description")},
        [COL_DEVICE]  = {"DEVICE",   5, 0, N_("block device name")}
@@ -630,20 +630,20 @@ usage(void)
        fprintf(stdout, _(" %s [options] <device>\n"), program_invocation_short_name);
 
        fputs(USAGE_SEPARATOR, stdout);
-       fputs(_("Wipe signatures from a device."), stdout);
+       fputsln(_("Wipe signatures from a device."), stdout);
 
        fputs(USAGE_OPTIONS, stdout);
-       fputs(_(" -a, --all            wipe all magic strings (BE CAREFUL!)"), stdout);
-       fputs(_(" -b, --backup[=<dir>] create a signature backup in <dir> or $HOME"), stdout);
-       fputs(_(" -f, --force          force erasure"), stdout);
-       fputs(_(" -i, --noheadings     don't print headings"), stdout);
-       fputs(_(" -J, --json           use JSON output format"), stdout);
-       fputs(_(" -n, --no-act         do everything except the actual write() call"), stdout);
-       fputs(_(" -o, --offset <num>   offset to erase, in bytes"), stdout);
-       fputs(_(" -O, --output <list>  COLUMNS to display (see below)"), stdout);
-       fputs(_(" -p, --parsable       print out in parsable instead of printable format"), stdout);
-       fputs(_(" -q, --quiet          suppress output messages"), stdout);
-       fputs(_(" -t, --types <list>   limit the set of filesystem, RAIDs or partition tables"), stdout);
+       fputsln(_(" -a, --all            wipe all magic strings (BE CAREFUL!)"), stdout);
+       fputsln(_(" -b, --backup[=<dir>] create a signature backup in <dir> or $HOME"), stdout);
+       fputsln(_(" -f, --force          force erasure"), stdout);
+       fputsln(_(" -i, --noheadings     don't print headings"), stdout);
+       fputsln(_(" -J, --json           use JSON output format"), stdout);
+       fputsln(_(" -n, --no-act         do everything except the actual write() call"), stdout);
+       fputsln(_(" -o, --offset <num>   offset to erase, in bytes"), stdout);
+       fputsln(_(" -O, --output <list>  COLUMNS to display (see below)"), stdout);
+       fputsln(_(" -p, --parsable       print out in parsable instead of printable format"), stdout);
+       fputsln(_(" -q, --quiet          suppress output messages"), stdout);
+       fputsln(_(" -t, --types <list>   limit the set of filesystem, RAIDs or partition tables"), stdout);
        fprintf(stdout,
             _("     --lock[=<mode>] use exclusive device lock (%s, %s or %s)\n"), "yes", "no", "nonblock");