tag: remove unused variable param

This variable doesn't have a role since 80799fa8.
This commit is contained in:
Laszlo Ashin 2009-01-25 19:22:05 +01:00 committed by Max Kellermann
parent c4bb227bdb
commit 808a369ca8

View File

@ -76,7 +76,6 @@ void tag_lib_init(void)
char *temp; char *temp;
char *s; char *s;
char *c; char *c;
const struct config_param *param;
int i; int i;
/* parse the "metadata_to_use" config parameter below */ /* 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) { if (strlen(c) && i == TAG_NUM_OF_ITEM_TYPES) {
FATAL("error parsing metadata item \"%s\" at " FATAL("error parsing metadata item \"%s\"\n",
"line %i\n", c, param->line); c);
} }
s++; s++;
c = s; c = s;