aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2022-07-30 13:38:46 +0200
committerAndreas Eversberg <jolly@eversberg.eu>2022-09-15 07:23:37 +0200
commitb3e00b5085d76fe0f24e8bcd3c133b7184def6d4 (patch)
treeb783dde395e14539d500bc5a83c75ac9b1239d54 /src
parent4e669ecf796b2bda8f212e6e6aa1c1725a00116c (diff)
POCSAG: Minor fixes.
Diffstat (limited to 'src')
-rw-r--r--src/pocsag/main.c4
-rw-r--r--src/pocsag/pocsag.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/pocsag/main.c b/src/pocsag/main.c
index 24d50d5..d18b99f 100644
--- a/src/pocsag/main.c
+++ b/src/pocsag/main.c
@@ -59,9 +59,9 @@ void print_help(const char *arg0)
main_mobile_print_help(arg0, "-k 466.230 | -k list");
/* - - */
printf(" -T --tx\n");
- printf(" Transmit Eurosignal on given channel, to page a receiver. (default)\n");
+ printf(" Transmit POCSAG signal on given channel, to page a receiver. (default)\n");
printf(" -R --rx\n");
- printf(" Receive Eurosignal on given channel, so we are the receiver.\n");
+ printf(" Receive POCSAG signal on given channel, so we are the receiver.\n");
printf(" If none of the options -T nor -R is given, only transmitter is enabled.\n");
printf(" -B --baud-rate 512 | 1200 | 2400\n");
printf(" Choose baud rate of transmitter.\n");
diff --git a/src/pocsag/pocsag.c b/src/pocsag/pocsag.c
index d7ca70f..1fb93f3 100644
--- a/src/pocsag/pocsag.c
+++ b/src/pocsag/pocsag.c
@@ -481,7 +481,7 @@ void call_down_clock(void)
}
/* Call control starts call towards paging network. */
-int call_down_setup(int callref, const char __attribute__((unused)) *caller_id, enum number_type __attribute__((unused)) caller_type, const char *dialing)
+int call_down_setup(int callref, const char *caller_id, enum number_type __attribute__((unused)) caller_type, const char *dialing)
{
char channel = '\0';
sender_t *sender;