1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00

lvchange: fix missing return value

A return value from lvchange_persistent_cmd() was missed
in commit 1c41898c07
This commit is contained in:
David Teigland 2017-04-05 10:08:01 -05:00
parent 448bf9491a
commit 6fdc391bae

View File

@ -1618,6 +1618,8 @@ int lvchange_persistent_cmd(struct cmd_context *cmd, int argc, char **argv)
} else if (arg_is_set(cmd, monitor_ARG) || arg_is_set(cmd, poll_ARG)) {
ret = lvchange_monitor_poll_cmd(cmd, argc, argv);
}
return ret;
}
int lvchange(struct cmd_context *cmd, int argc, char **argv)