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>
---
ublk/nbdublk.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ublk/nbdublk.c b/ublk/nbdublk.c
index 3c6ab90037fc..b079d577ae6f 100644
--- a/ublk/nbdublk.c
+++ b/ublk/nbdublk.c
@@ -196,8 +196,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;