aboutsummaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2017-01-08 12:10:29 +0100
committerAndreas Eversberg <jolly@eversberg.eu>2017-02-18 21:00:55 +0100
commita5fd375237cd7d4f9a1d60608c50720b3498f72d (patch)
tree5a271342ec9b29e40efd2f3664ee6176b4eaf03f /src/common
parentbf0abd627d42a6603cd8c98442539eb7c779615c (diff)
Fixed typos
Diffstat (limited to 'src/common')
-rw-r--r--src/common/main_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/main_common.c b/src/common/main_common.c
index 7a38bc4..2aa5b40 100644
--- a/src/common/main_common.c
+++ b/src/common/main_common.c
@@ -250,7 +250,7 @@ void opt_switch_common(int c, char *arg0, int *skip_args)
case 'p':
if (!uses_emphasis) {
no_emph:
- fprintf(stderr, "A-Netz does not use emphasis, please do not enable pre- or de-emphasis! Disable emphasis on transceiver, if possible.\n");
+ fprintf(stderr, "This network does not use emphasis, please do not enable pre- or de-emphasis! Disable emphasis on transceiver, if possible.\n");
exit(0);
}
do_pre_emphasis = 1;
@@ -265,7 +265,7 @@ void opt_switch_common(int c, char *arg0, int *skip_args)
case 'g':
gain_db = atof(optarg);
if (gain_db < 0.0) {
- fprintf(stderr, "Given gain is below 0. Tto reduce RX signal, use sound card's mixer (or resistor net)!\n");
+ fprintf(stderr, "Given gain is below 0. To reduce RX signal, use sound card's mixer (or resistor net)!\n");
exit(0);
}
rx_gain = pow(10, gain_db / 20.0);