diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-03-15 07:12:57 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-03-15 07:12:57 +0000 |
commit | 7e1bb85c1a57df528b8a724d11b8af66aa592162 (patch) | |
tree | f2cac68fcde754696bb7b98745c84316fcca7044 /src/conf.c | |
parent | bd561dec2733b0afb101d47e7a896af7ff67dfd1 (diff) | |
download | mpd-7e1bb85c1a57df528b8a724d11b8af66aa592162.tar.gz mpd-7e1bb85c1a57df528b8a724d11b8af66aa592162.tar.xz mpd-7e1bb85c1a57df528b8a724d11b8af66aa592162.zip |
conf.c: speling fickses
git-svn-id: https://svn.musicpd.org/mpd/trunk@3920 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/conf.c')
-rw-r--r-- | src/conf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conf.c b/src/conf.c index 0fd3dda95..a78c7afc1 100644 --- a/src/conf.c +++ b/src/conf.c @@ -215,7 +215,7 @@ static ConfigParam * readConfigBlock(FILE * fp, int * count, char * string) { { ERROR("improperly formatted config file at line %i:" " %s\n", count, string); - ERROR("in block begging at line %i\n", ret->line); + ERROR("in block begining at line %i\n", ret->line); exit(EXIT_FAILURE); } @@ -268,7 +268,7 @@ void readConf(char * file) { } if(!findInList(configEntriesList, array[0], &voidPtr)) { - ERROR("unrecognized paramater in config file at line " + ERROR("unrecognized parameter in config file at line " "%i: %s\n", count, string); exit(EXIT_FAILURE); } @@ -279,7 +279,7 @@ void readConf(char * file) { entry->configParamList->numberOfNodes) { param = entry->configParamList->firstNode->data; - ERROR("config paramter \"%s\" is first defined on line " + ERROR("config parameter \"%s\" is first defined on line " "%i and redefined on line %i\n", array[0], param->line, count); exit(EXIT_FAILURE); |