aboutsummaryrefslogtreecommitdiffstats
path: root/src/tv/main.c
diff options
context:
space:
mode:
authorMartin Hauke <mardnh@gmx.de>2021-01-01 22:11:48 +0100
committerAndreas Eversberg <jolly@eversberg.eu>2021-01-03 09:57:03 +0100
commita07764f0d9426ae5b18b1bc4f2c2951da88cb677 (patch)
tree9e253acf4888801b0aec851687491f0c959f021d /src/tv/main.c
parent97636aac1e0f9528c773c943af94591e7bb9bcf2 (diff)
Fixed typos in cli output and source code comments
Diffstat (limited to 'src/tv/main.c')
-rw-r--r--src/tv/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tv/main.c b/src/tv/main.c
index 0e8f493..9ce732b 100644
--- a/src/tv/main.c
+++ b/src/tv/main.c
@@ -105,7 +105,7 @@ void print_help(const char *arg0)
printf(" -w --wave-file <filename>\n");
printf(" Output to wave file instead of SDR\n");
printf(" -r --realtime <prio>\n");
- printf(" Set prio: 0 to diable, 99 for maximum (default = %d)\n", rt_prio);
+ printf(" Set prio: 0 to disable, 99 for maximum (default = %d)\n", rt_prio);
printf("\nsignal options:\n");
printf(" -F --fbas 1 | 0\n");
printf(" Turn color on or off. (default = %d)\n", fbas);
@@ -210,7 +210,7 @@ static int handle_options(int short_option, int argi, char **argv)
case 'I':
station_id = strdup(argv[argi]);
if (strlen(station_id) != 12) {
- fprintf(stderr, "Given station ID must be exactly 12 charaters long. (Use spaces to fill it.)\n");
+ fprintf(stderr, "Given station ID must be exactly 12 characters long. (Use spaces to fill it.)\n");
return -EINVAL;
}
break;