summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2014-04-01 20:08:08 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2014-04-01 20:54:09 +0200
commit1eaef2b705f82969e0a463f122ddda569676ce13 (patch)
tree099d84852d2cb940cfe32c97ccaf7c08b8120bbc
parent9cb053339e5e001c57a2565f25b499ffb02d7f8a (diff)
downloadlvm2-1eaef2b705f82969e0a463f122ddda569676ce13.tar.gz
cleanup: just rename for interal function
-rw-r--r--tools/lvchange.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lvchange.c b/tools/lvchange.c
index 982e62009..bddc0797d 100644
--- a/tools/lvchange.c
+++ b/tools/lvchange.c
@@ -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);
}