From 44ba862674c995e2ed297714d3aa2b2dbd731ad1 Mon Sep 17 00:00:00 2001 From: David Teigland Date: Mon, 26 Oct 2015 16:27:26 -0500 Subject: [PATCH] toollib: fix wrong paren placement --- tools/toollib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/toollib.c b/tools/toollib.c index 843a47bee..59ba29f4c 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;