qemu: Don't remove the "return 0"

Commit f60a50c795 intended to remove the warning only, but not with
the "return 0" together.
This commit is contained in:
Osier Yang 2013-05-21 23:02:36 +08:00
parent 995bf76d17
commit 58f8e0cd58

View File

@ -471,6 +471,8 @@ qemuSetupMemoryCgroup(virDomainObjPtr vm)
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
_("Memory cgroup is not available on this host"));
return -1;
} else {
return 0;
}
}