diff options
author | Laszlo Ashin <kodest@gmail.com> | 2009-01-25 19:22:05 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-25 19:38:49 +0100 |
commit | 808a369ca82e919d53fe5c0534bafc1c06785a27 (patch) | |
tree | e3aadc6bb179a7261d58cfbb7b23d90f0ae02433 | |
parent | c4bb227bdb99bf9157b53495bad2890a7f79529e (diff) | |
download | mpd-808a369ca82e919d53fe5c0534bafc1c06785a27.tar.gz mpd-808a369ca82e919d53fe5c0534bafc1c06785a27.tar.xz mpd-808a369ca82e919d53fe5c0534bafc1c06785a27.zip |
tag: remove unused variable param
This variable doesn't have a role since 80799fa8.
-rw-r--r-- | src/tag.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -76,7 +76,6 @@ void tag_lib_init(void) char *temp; char *s; char *c; - const struct config_param *param; int i; /* parse the "metadata_to_use" config parameter below */ @@ -106,8 +105,8 @@ void tag_lib_init(void) } } if (strlen(c) && i == TAG_NUM_OF_ITEM_TYPES) { - FATAL("error parsing metadata item \"%s\" at " - "line %i\n", c, param->line); + FATAL("error parsing metadata item \"%s\"\n", + c); } s++; c = s; |