diff options
Diffstat (limited to 'src/audioOutputs')
-rw-r--r-- | src/audioOutputs/audioOutput_shout.c | 4 |
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); } |