From: Peter Krempa Date: Mon, 27 May 2013 10:08:00 +0000 (+0200) Subject: virsh-domain-monitor: Remove ATTRIBUTE_UNUSED from a argument X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=36e073ad9e8d116d173364ce0f7e56052b10a73b;p=libvirt.git virsh-domain-monitor: Remove ATTRIBUTE_UNUSED from a argument The "cmd" argument in cmdList is now used. Unmark it as unused. --- diff --git a/tools/virsh-domain-monitor.c b/tools/virsh-domain-monitor.c index b2841548b3..3ba829cc86 100644 --- a/tools/virsh-domain-monitor.c +++ b/tools/virsh-domain-monitor.c @@ -1689,7 +1689,7 @@ static const vshCmdOptDef opts_list[] = { if (vshCommandOptBool(cmd, NAME)) \ flags |= (FLAG) static bool -cmdList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED) +cmdList(vshControl *ctl, const vshCmd *cmd) { bool managed = vshCommandOptBool(cmd, "managed-save"); bool optTitle = vshCommandOptBool(cmd, "title");