Now that the nested loop is gone.
Signed-off-by: Ján Tomko <[email protected]>
---
src/qemu/qemu_command.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/qemu/qemu_command.c b/src/qemu/qemu_command.c
index 214d4068e9..093a528bec 100644
--- a/src/qemu/qemu_command.c
+++ b/src/qemu/qemu_command.c
@@ -3180,7 +3180,7 @@ qemuBuildControllersCommandLine(virCommandPtr cmd,
const virDomainDef *def,
virQEMUCapsPtr qemuCaps)
{
- size_t j;
+ size_t i;
int contOrder[] = {
/*
* List of controller types that we add commandline args for,
@@ -3209,8 +3209,8 @@ qemuBuildControllersCommandLine(virCommandPtr cmd,
};
int ret = -1;
- for (j = 0; j < ARRAY_CARDINALITY(contOrder); j++) {
- if (qemuBuildControllersByTypeCommandLine(cmd, def, qemuCaps,
contOrder[j]) < 0)
+ for (i = 0; i < ARRAY_CARDINALITY(contOrder); i++) {
+ if (qemuBuildControllersByTypeCommandLine(cmd, def, qemuCaps,
contOrder[i]) < 0)
goto cleanup;
}
--
2.20.1
--
libvir-list mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/libvir-list