From: Peter Krempa Date: Mon, 9 Sep 2013 08:52:08 +0000 (+0200) Subject: virsh-domain: Remove spurious ATTRIBUTE_UNUSED from cmdDesc X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=626d4dfc2e7df60e8be0cb224f441bb56d9e3157;p=libvirt.git virsh-domain: Remove spurious ATTRIBUTE_UNUSED from cmdDesc The "cmd" variable is actually used so remove the attribute. --- diff --git a/tools/virsh-domain.c b/tools/virsh-domain.c index e47877b9a5..910c6fb32e 100644 --- a/tools/virsh-domain.c +++ b/tools/virsh-domain.c @@ -6670,7 +6670,7 @@ static const vshCmdOptDef opts_desc[] = { }; static bool -cmdDesc(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED) +cmdDesc(vshControl *ctl, const vshCmd *cmd) { virDomainPtr dom; bool config = vshCommandOptBool(cmd, "config");