aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-02-13 03:08:33 +0100
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-02-13 03:43:56 +0100
commit82aeeacd5296a6f50f51087ec562a3f01d4793d8 (patch)
treeb8cae2786b82d5a276959e2e23d18d11c29bbc5b
parent6664f47ad71f8f400df3e9e7a01007d292d7d063 (diff)
main: cosmetic: tweak deprecation warning messages
-rw-r--r--src/common/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/main.c b/src/common/main.c
index f54a5ca4..76e0d430 100644
--- a/src/common/main.c
+++ b/src/common/main.c
@@ -181,15 +181,15 @@ static void handle_options(int argc, char **argv)
break;
case 'r':
rt_prio = atoi(optarg);
- fprintf(stderr, "Parameter -r is deprecated, use VTY cpu-sched "
- "node setting 'policy rr %d' instead\n", rt_prio);
+ fprintf(stderr, "Command line argument '-r' is deprecated, use VTY "
+ "cpu-sched node setting 'policy rr %d' instead.\n", rt_prio);
break;
case 'i':
gsmtap_ip = optarg;
break;
case 't':
- fprintf(stderr, "Parameter -t is deprecated and does nothing, "
- "TRX num is calculated from VTY\n");
+ fprintf(stderr, "Command line argument '-t' is deprecated and does nothing, "
+ "TRX number is calculated from the VTY automatically.\n");
break;
case '?':
case 1: