Commit 808a369c authored by Laszlo Ashin's avatar Laszlo Ashin Committed by Max Kellermann

tag: remove unused variable param

This variable doesn't have a role since 80799fa8.
parent c4bb227b
...@@ -76,7 +76,6 @@ void tag_lib_init(void) ...@@ -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) ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment