aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLaszlo Ashin <kodest@gmail.com>2009-01-25 19:22:05 +0100
committerMax Kellermann <max@duempel.org>2009-01-25 19:38:49 +0100
commit808a369ca82e919d53fe5c0534bafc1c06785a27 (patch)
treee3aadc6bb179a7261d58cfbb7b23d90f0ae02433 /src
parentc4bb227bdb99bf9157b53495bad2890a7f79529e (diff)
downloadmpd-808a369ca82e919d53fe5c0534bafc1c06785a27.tar.gz
mpd-808a369ca82e919d53fe5c0534bafc1c06785a27.tar.xz
mpd-808a369ca82e919d53fe5c0534bafc1c06785a27.zip
tag: remove unused variable param
This variable doesn't have a role since 80799fa8.
Diffstat (limited to 'src')
-rw-r--r--src/tag.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tag.c b/src/tag.c
index 23355c725..faeb03b4a 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -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;