Gitweb: http://git.fedorahosted.org/git/?p=lvm2.git;a=commitdiff;h=44ba862674c995e2e... Commit: 44ba862674c995e2ed297714d3aa2b2dbd731ad1 Parent: 6624833839645cbe75af073fd1dd9ab8c78e0d03 Author: David Teigland teigland@redhat.com AuthorDate: Mon Oct 26 16:27:26 2015 -0500 Committer: David Teigland teigland@redhat.com CommitterDate: Mon Oct 26 16:27:26 2015 -0500
toollib: fix wrong paren placement
--- tools/toollib.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/toollib.c b/tools/toollib.c index 843a47b..59ba29f 100644 --- a/tools/toollib.c +++ b/tools/toollib.c @@ -3119,7 +3119,7 @@ int process_each_pv(struct cmd_context *cmd, return ret; }
- if ((ret = _get_arg_devices(cmd, &arg_pvnames, &arg_devices) != ECMD_PROCESSED)) + if ((ret = _get_arg_devices(cmd, &arg_pvnames, &arg_devices)) != ECMD_PROCESSED) /* get_arg_devices reports the error for any PV names not found. */ ret_max = ECMD_FAILED;
lvm2-commits@lists.fedorahosted.org