1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-30 17:18:21 +03:00

cleanup: drop unused vars

This commit is contained in:
Zdenek Kabelac 2014-11-20 17:49:32 +01:00
parent 71271cf905
commit 089bdc0be4
2 changed files with 2 additions and 2 deletions

View File

@ -522,7 +522,7 @@ static struct dm_config_node *_section(struct parser *p, struct dm_config_node *
{
/* IDENTIFIER SECTION_B_CHAR VALUE* SECTION_E_CHAR */
struct dm_config_node *root, *n, *l = NULL;
struct dm_config_node *root, *n;
struct dm_config_value *value;
char *str;

View File

@ -1126,7 +1126,7 @@ struct dm_config_tree *get_cachepolicy_params(struct cmd_context *cmd)
const char *str;
struct arg_value_group_list *group;
struct dm_config_tree *result = NULL, *prev = NULL, *current = NULL;
struct dm_config_node *cn, *last = NULL;
struct dm_config_node *cn;
int ok = 0;
dm_list_iterate_items(group, &cmd->arg_value_groups) {