diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-01-26 22:16:55 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-01-26 22:16:55 +0000 |
commit | cf7c38032b492ee46c1618fe7bf84fc9480292b5 (patch) | |
tree | 031526ebdee62253a73c3a72ab32fb53a687402b /src | |
parent | ad6e6a54ae9e27116965028fdafbae7198a17bb6 (diff) |
conf.c: remove extra semi-colon here, too
r6874 in trunk
git-svn-id: https://svn.musicpd.org/mpd/branches/branch-0.13.0-fixes@7162 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-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 8ab59a505..15d95a78b 100644 --- a/src/conf.c +++ b/src/conf.c @@ -233,7 +233,7 @@ static ConfigParam *readConfigBlock(FILE * fp, int *count, char *string) 0 == strcmp(array[1], CONF_BLOCK_END)) { FATAL("improperly formatted config file at line %i: %s\n" "in block beginning at line %i\n", - *count, string, ret->line);; + *count, string, ret->line); } addBlockParam(ret, array[0], array[1], *count); |