[libvirt] [PATCH] build: silence some clang warnings

Eric Blake eblake at redhat.com
Mon Feb 14 23:07:13 UTC 2011


* tools/virsh.c (cmdHelp): Kill dead variables.
---

Pushing under the trivial rule.

 tools/virsh.c |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/tools/virsh.c b/tools/virsh.c
index c2d165d..50d5e33 100644
--- a/tools/virsh.c
+++ b/tools/virsh.c
@@ -589,8 +589,6 @@ static const vshCmdOptDef opts_help[] = {
 static int
 cmdHelp(vshControl *ctl, const vshCmd *cmd)
  {
-    const vshCmdDef *c;
-    const vshCmdGrp *g;
     const char *name;

     name = vshCommandOptString(cmd, "command", NULL);
@@ -615,9 +613,9 @@ cmdHelp(vshControl *ctl, const vshCmd *cmd)
         return TRUE;
     }

-    if ((c = vshCmddefSearch(name))) {
+    if (vshCmddefSearch(name)) {
         return vshCmddefHelp(ctl, name);
-    } else if ((g = vshCmdGrpSearch(name))) {
+    } else if (vshCmdGrpSearch(name)) {
         return vshCmdGrpHelp(ctl, name);
     } else {
         vshError(ctl, _("command or command group '%s' doesn't exist"), name);
-- 
1.7.4




More information about the libvir-list mailing list