aboutsummaryrefslogtreecommitdiffstats
path: root/src/nmt
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2016-11-28 09:16:48 +0100
committerAndreas Eversberg <andreas@eversberg.eu>2016-11-29 07:49:21 +0100
commitd52d0242bf6a622334fb61a6ca0db3b264ca45b8 (patch)
tree53a69efd62d05615c6fe6c683568716c8219edcd /src/nmt
parent938fb74baef7a53b0092271ad6ac61a376cc2d8f (diff)
Output enhancements
* no more flicker on wave form display while scrolling * dialing console gets cleared/overwritten correctly * fixes on stderr output
Diffstat (limited to 'src/nmt')
-rw-r--r--src/nmt/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nmt/main.c b/src/nmt/main.c
index 2151fa2..256d464 100644
--- a/src/nmt/main.c
+++ b/src/nmt/main.c
@@ -283,13 +283,13 @@ int main(int argc, char *argv[])
if (num_kanal == 1 && num_sounddev == 0)
num_sounddev = 1; /* use defualt */
if (num_kanal != num_sounddev) {
- fprintf(stdout, "You need to specify as many sound devices as you have channels.\n");
+ fprintf(stderr, "You need to specify as many sound devices as you have channels.\n");
exit(0);
}
if (num_kanal == 1 && num_chan_type == 0)
num_chan_type = 1; /* use defualt */
if (num_kanal != num_chan_type) {
- fprintf(stdout, "You need to specify as many channel types as you have channels.\n");
+ fprintf(stderr, "You need to specify as many channel types as you have channels.\n");
exit(0);
}