aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutputs
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-03-18 04:01:37 +0000
committerEric Wong <normalperson@yhbt.net>2006-03-18 04:01:37 +0000
commit0e793b510a2a61759cccf4caa38d9651eae1018b (patch)
treefd23fef78584a66ca6852895ecbd827ab8de68ab /src/audioOutputs
parent17d3ccbaa3f22c4c0f8a86515d71fc017a451bbd (diff)
downloadmpd-svn/oggflac.tar.gz
mpd-svn/oggflac.tar.xz
mpd-svn/oggflac.zip
merge up to r3928, branch should be closeable unless there aresvn/oggflac
major issues that need to be addressed. git-svn-id: https://svn.musicpd.org/mpd/branches/oggflac@3929 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/audioOutputs')
-rw-r--r--src/audioOutputs/audioOutput_shout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audioOutputs/audioOutput_shout.c b/src/audioOutputs/audioOutput_shout.c
index d705eefe1..6bd418f9b 100644
--- a/src/audioOutputs/audioOutput_shout.c
+++ b/src/audioOutputs/audioOutput_shout.c
@@ -170,7 +170,7 @@ static int myShout_initDriver(AudioOutput * audioOutput, ConfigParam * param) {
if(*test != '\0' || sd->quality < 0.0 || sd->quality > 10.0) {
ERROR("shout quality \"%s\" is not a number in the "
- "rage 0-10, line %i\n", blockParam->value,
+ "range 0-10, line %i\n", blockParam->value,
blockParam->line);
exit(EXIT_FAILURE);
}
@@ -196,7 +196,7 @@ static int myShout_initDriver(AudioOutput * audioOutput, ConfigParam * param) {
sd->bitrate = strtol(blockParam->value, &test, 10);
if(*test != '\0' || sd->bitrate <= 0) {
- ERROR("bitrate at line %i should be a positve integer "
+ ERROR("bitrate at line %i should be a positive integer "
"\n", blockParam->line);
exit(EXIT_FAILURE);
}