Due to the switch of parameters in a call to virDomainShmemDefEquals()
no device was found when looking for device with all the information
except address. Also fix the indentation.
Signed-off-by: Martin Kletzander <mkletzan(a)redhat.com>
---
src/conf/domain_conf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
index a06da46fabe4..dbf6eca57153 100644
--- a/src/conf/domain_conf.c
+++ b/src/conf/domain_conf.c
@@ -14858,8 +14858,8 @@ virDomainShmemDefFind(virDomainDefPtr def,
size_t i;
for (i = 0; i < def->nshmems; i++) {
- if (virDomainShmemDefEquals(def->shmems[i], shmem))
- break;
+ if (virDomainShmemDefEquals(shmem, def->shmems[i]))
+ break;
}
if (i < def->nshmems)
--
2.10.0