aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutputs/audioOutput_shout.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-03-16 06:41:41 +0000
committerEric Wong <normalperson@yhbt.net>2006-03-16 06:41:41 +0000
commit867ca276adf417d95fac2007d887728bf0dddcca (patch)
treea85b0bb42032f8c7882e5d0ef7a6c575da86d4b6 /src/audioOutputs/audioOutput_shout.c
parente0439446b7eb558d12372cb6be39ada0d67db6a6 (diff)
downloadmpd-867ca276adf417d95fac2007d887728bf0dddcca.tar.gz
mpd-867ca276adf417d95fac2007d887728bf0dddcca.tar.xz
mpd-867ca276adf417d95fac2007d887728bf0dddcca.zip
Hopefully the last of the spelling fixes :>
git-svn-id: https://svn.musicpd.org/mpd/trunk@3923 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-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);
}