summaryrefslogtreecommitdiffstats
path: root/misc-utils
diff options
context:
space:
mode:
authorKarel Zak2017-06-26 13:56:45 +0200
committerKarel Zak2017-06-26 13:56:45 +0200
commitd6ec64e824cac821fd21f457d9cf37fd663a045f (patch)
tree2184375c9b1cea82eac0ce54f33bf0b85ae68ead /misc-utils
parentMerge branch 'fix-exit-codes' of https://github.com/rudimeier/util-linux (diff)
parentDocs: move option naming to howto-contribute.txt (diff)
downloadkernel-qcow2-util-linux-d6ec64e824cac821fd21f457d9cf37fd663a045f.tar.gz
kernel-qcow2-util-linux-d6ec64e824cac821fd21f457d9cf37fd663a045f.tar.xz
kernel-qcow2-util-linux-d6ec64e824cac821fd21f457d9cf37fd663a045f.zip
Merge branch '170622' of github.com:jwpi/util-linux
* '170622' of github.com:jwpi/util-linux: Docs: move option naming to howto-contribute.txt Docs: update howto-usage-function.txt Docs: add a comment for constants to boilerplate.c include/c.h: add USAGE_COMMANDS and USAGE_COLUMNS
Diffstat (limited to 'misc-utils')
-rw-r--r--misc-utils/findmnt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/misc-utils/findmnt.c b/misc-utils/findmnt.c
index 93c0e90ef..7acc60a26 100644
--- a/misc-utils/findmnt.c
+++ b/misc-utils/findmnt.c
@@ -1248,8 +1248,7 @@ static void __attribute__((__noreturn__)) usage(FILE *out)
fputs(USAGE_HELP, out);
fputs(USAGE_VERSION, out);
- fprintf(out, _("\nAvailable columns:\n"));
-
+ fputs(USAGE_COLUMNS, out);
for (i = 0; i < ARRAY_SIZE(infos); i++)
fprintf(out, " %11s %s\n", infos[i].name, _(infos[i].help));