mirror of https://gitee.com/openkylin/libvirt.git
virsh-domain-monitor: Remove ATTRIBUTE_UNUSED from a argument
The "cmd" argument in cmdList is now used. Unmark it as unused.
This commit is contained in:
parent
ab7110bff6
commit
36e073ad9e
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue