提交 065e89cf 编写于 作者: P Pavel Hrdina

conf: fix build issue caused by shadowing global declaration

Signed-off-by: NPavel Hrdina <phrdina@redhat.com>
上级 97863780
......@@ -3525,12 +3525,12 @@ void virDomainDeviceInfoClear(virDomainDeviceInfoPtr info)
static bool
virDomainSkipBackcompatConsole(virDomainDefPtr def,
size_t index,
size_t idx,
bool all)
{
virDomainChrDefPtr console = def->consoles[index];
virDomainChrDefPtr console = def->consoles[idx];
if (!all && index == 0 &&
if (!all && idx == 0 &&
(console->targetType == VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL ||
console->targetType == VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_NONE) &&
def->os.type == VIR_DOMAIN_OSTYPE_HVM) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册