summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-04-26 16:27:59 +0000
committerLennart Poettering <lennart@poettering.net>2006-04-26 16:27:59 +0000
commitd78e466a2839ac9d71993cf069f7df4360ecea1e (patch)
tree24d8ed87d557e8998c4b8992b24c9563fd937686
parent7b8390459b12081a2c3ae079d1acfb1fd93f1114 (diff)
fix volume range printed on --help
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@808 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r--src/utils/pacat.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/utils/pacat.c b/src/utils/pacat.c
index a823c88b..1ecc0db2 100644
--- a/src/utils/pacat.c
+++ b/src/utils/pacat.c
@@ -403,7 +403,7 @@ static void help(const char *argv0) {
" -d, --device=DEVICE The name of the sink/source to connect to\n"
" -n, --client-name=NAME How to call this client on the server\n"
" --stream-name=NAME How to call this stream on the server\n"
- " --volume=VOLUME Specify the initial (linear) volume in range 0...256\n"
+ " --volume=VOLUME Specify the initial (linear) volume in range 0...65536\n"
" --rate=SAMPLERATE The sample rate in Hz (defaults to 44100)\n"
" --format=SAMPLEFORMAT The sample type, one of s16le, s16be, u8, float32le,\n"
" float32be, ulaw, alaw (defaults to s16ne)\n"
@@ -521,7 +521,6 @@ int main(int argc, char *argv[]) {
break;
case ARG_CHANNELMAP:
-
if (!pa_channel_map_parse(&channel_map, optarg)) {
fprintf(stderr, "Invalid channel map\n");
goto quit;