1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-28 02:50:41 +03:00

cleanup: just rename for interal function

This commit is contained in:
Zdenek Kabelac 2014-04-01 20:08:08 +02:00
parent 9cb053339e
commit 1eaef2b705

View File

@ -933,7 +933,7 @@ static int lvchange_activation_skip(struct logical_volume *lv)
}
static int lvchange_single(struct cmd_context *cmd, struct logical_volume *lv,
static int _lvchange_single(struct cmd_context *cmd, struct logical_volume *lv,
void *handle __attribute__((unused)))
{
int doit = 0, docmds = 0;
@ -1270,5 +1270,5 @@ int lvchange(struct cmd_context *cmd, int argc, char **argv)
return process_each_lv(cmd, argc, argv,
update ? READ_FOR_UPDATE : 0, NULL,
&lvchange_single);
&_lvchange_single);
}