From 4f3a2a77c500f14e1dd1ba75859423f7fe64a61c Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Sun, 27 Feb 2022 02:42:52 +0900 Subject: [PATCH] tests: (lsfd) improve the help messages of test_mkfds helper command The change notifies users that -I, --parameters option takes a factory name. Signed-off-by: Masatake YAMATO --- tests/helpers/test_mkfds.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/helpers/test_mkfds.c b/tests/helpers/test_mkfds.c index bb4fe882a3..12b814f378 100644 --- a/tests/helpers/test_mkfds.c +++ b/tests/helpers/test_mkfds.c @@ -44,11 +44,11 @@ static void __attribute__((__noreturn__)) usage(FILE *out, int status) fprintf(out, _(" %s [options] FACTORY FD... [PARAM=VAL...]\n"), program_invocation_short_name); fputs(USAGE_OPTIONS, out); - fputs(_(" -l, --list list available file descriptor factories and exit\n"), out); - fputs(_(" -I, --parameters list parameters the factory takes\n"), out); - fputs(_(" -r, --comm rename self\n"), out); - fputs(_(" -q, --quiet don't print pid(s)\n"), out); - fputs(_(" -c, --dont-pause don't pause after making fd(s)\n"), out); + fputs(_(" -l, --list list available file descriptor factories and exit\n"), out); + fputs(_(" -I, --parameters list parameters the factory takes\n"), out); + fputs(_(" -r, --comm rename self\n"), out); + fputs(_(" -q, --quiet don't print pid(s)\n"), out); + fputs(_(" -c, --dont-pause don't pause after making fd(s)\n"), out); fputs(USAGE_SEPARATOR, out); fputs(_("Examples:\n"), out); -- 2.47.2