diff options
author | Qball Cow <qball@qballcow.nl> | 2007-01-21 21:41:54 +0000 |
---|---|---|
committer | Qball Cow <qball@qballcow.nl> | 2007-01-21 21:41:54 +0000 |
commit | b2488e469a02dfe55009dc03a2810c8d9d36d147 (patch) | |
tree | 6e81a76b266f56ae46498e282b769c7d09a8b4ae /src/audioOutputs | |
parent | d7e3b80f621b83e1b471f23642bcd67a18ea3378 (diff) | |
download | mpd-b2488e469a02dfe55009dc03a2810c8d9d36d147.tar.gz mpd-b2488e469a02dfe55009dc03a2810c8d9d36d147.tar.xz mpd-b2488e469a02dfe55009dc03a2810c8d9d36d147.zip |
Fix some error messages concerning _ao output driver
git-svn-id: https://svn.musicpd.org/mpd/trunk@5268 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/audioOutputs')
-rw-r--r-- | src/audioOutputs/audioOutput_ao.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audioOutputs/audioOutput_ao.c b/src/audioOutputs/audioOutput_ao.c index 734a6538d..a1840b410 100644 --- a/src/audioOutputs/audioOutput_ao.c +++ b/src/audioOutputs/audioOutput_ao.c @@ -122,7 +122,7 @@ static int audioOutputAo_initDriver(AudioOutput * audioOutput, key = strtok_r(n1, "=", &stk2); if (!key) { ERROR("problems parsing " - "ao_driver_options \"%s\"\n", n1); + "options \"%s\"\n", n1); exit(EXIT_FAILURE); } /*found = 0; @@ -141,7 +141,7 @@ static int audioOutputAo_initDriver(AudioOutput * audioOutput, value = strtok_r(NULL, "", &stk2); if (!value) { ERROR("problems parsing " - "ao_driver_options \"%s\"\n", n1); + "options \"%s\"\n", n1); exit(EXIT_FAILURE); } ao_append_option(&ad->options, key, value); |