From 14da45c8e40efdbabb282c52c4d4590e3d3cca4c Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Wed, 28 Aug 2013 14:56:21 +0200 Subject: [PATCH] qemu_hotplug: Fix whitespace around addition in argument --- src/qemu/qemu_hotplug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qemu/qemu_hotplug.c b/src/qemu/qemu_hotplug.c index a7256f357d..9c655fff1c 100644 --- a/src/qemu/qemu_hotplug.c +++ b/src/qemu/qemu_hotplug.c @@ -814,7 +814,7 @@ int qemuDomainAttachNetDevice(virConnectPtr conn, size_t i; /* preallocate new slot for device */ - if (VIR_REALLOC_N(vm->def->nets, vm->def->nnets+1) < 0) + if (VIR_REALLOC_N(vm->def->nets, vm->def->nnets + 1) < 0) goto cleanup; /* If appropriate, grab a physical device from the configured @@ -1136,7 +1136,7 @@ int qemuDomainAttachHostPciDevice(virQEMUDriverPtr driver, char *configfd_name = NULL; bool releaseaddr = false; - if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs+1) < 0) + if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs + 1) < 0) return -1; if (qemuPrepareHostdevPCIDevices(driver, vm->def->name, vm->def->uuid,