Beyond breaking up the long string in the error message, replace
"parameter" with the more correct (pedantic...) "option-argument"
term.
Bugzilla:
https://bugzilla.redhat.com/show_bug.cgi?id=2172516
Signed-off-by: Laszlo Ersek <lersek(a)redhat.com>
---
fuse/nbdfuse.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fuse/nbdfuse.c b/fuse/nbdfuse.c
index 8efe2989d5e1..d3eca25632a6 100644
--- a/fuse/nbdfuse.c
+++ b/fuse/nbdfuse.c
@@ -229,8 +229,8 @@ main (int argc, char *argv[])
case 'C':
if (sscanf (optarg, "%u", &connections) != 1 ||
connections < 1 || connections > 1024) {
- fprintf (stderr, "%s: --connections parameter must be an unsigned integer
>= 1\n",
- argv[0]);
+ fprintf (stderr, "%s: --connections option-argument must be an "
+ "unsigned integer >= 1\n", argv[0]);
exit (EXIT_FAILURE);
}
break;