diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-10-31 15:54:21 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-10-31 15:54:21 +0000 |
commit | fab2bef87a9d2d448b63315a731015f43f34bc7a (patch) | |
tree | 303230bbc96afcfc85335c593cd6f5a678154e8a /src | |
parent | 19a700b78b0ff17ef64c85f0e6512112831af900 (diff) | |
download | mpd-fab2bef87a9d2d448b63315a731015f43f34bc7a.tar.gz mpd-fab2bef87a9d2d448b63315a731015f43f34bc7a.tar.xz mpd-fab2bef87a9d2d448b63315a731015f43f34bc7a.zip |
fix a config file error
git-svn-id: https://svn.musicpd.org/mpd/trunk@2435 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.c b/src/conf.c index ccbb99f1c..4650cf08f 100644 --- a/src/conf.c +++ b/src/conf.c @@ -192,7 +192,7 @@ static ConfigParam * readConfigBlock(FILE * fp, int * count, char * string) { if(2 != argsMinusComment) { ERROR("improperly formated config file at line %i:" - " %s\n", count, string); + " %s\n", *count, string); exit(EXIT_FAILURE); } |