[libvirt] [PATCH] parallels: fix build for some older compilers

Laine Stump laine at laine.org
Fri Oct 26 17:27:42 UTC 2012


Found this when building on RHEL5:

parallels/parallels_storage.c: In function 'parallelsStorageOpen':
parallels/parallels_storage.c:180: error: 'for' loop initial declaration used outside C99 mode

(and similar error in parallels_driver.c). This was in spite of
configuring with "-Wno-error".
---

Pushed under the build-breaker rule.

 src/parallels/parallels_driver.c  | 6 ++++--
 src/parallels/parallels_storage.c | 4 +++-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/parallels/parallels_driver.c b/src/parallels/parallels_driver.c
index e8af89c..62db626 100644
--- a/src/parallels/parallels_driver.c
+++ b/src/parallels/parallels_driver.c
@@ -1256,14 +1256,16 @@ static int
 parallelsApplySerialParams(virDomainChrDefPtr *oldserials, int nold,
                            virDomainChrDefPtr *newserials, int nnew)
 {
+    int i, j;
+
     if (nold != nnew)
         goto error;
 
-    for (int i = 0; i < nold; i++) {
+    for (i = 0; i < nold; i++) {
         virDomainChrDefPtr oldserial = oldserials[i];
         virDomainChrDefPtr newserial = NULL;
 
-        for (int j = 0; j < nnew; j++) {
+        for (j = 0; j < nnew; j++) {
             if (newserials[j]->target.port == oldserial->target.port) {
                 newserial = newserials[j];
                 break;
diff --git a/src/parallels/parallels_storage.c b/src/parallels/parallels_storage.c
index 112e288..76d885c 100644
--- a/src/parallels/parallels_storage.c
+++ b/src/parallels/parallels_storage.c
@@ -123,6 +123,8 @@ parallelsStorageOpen(virConnectPtr conn,
     virStorageDriverStatePtr storageState;
     int privileged = (geteuid() == 0);
     parallelsConnPtr privconn = conn->privateData;
+    size_t i;
+
     virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);
 
     if (STRNEQ(conn->driver->name, "Parallels"))
@@ -176,7 +178,7 @@ parallelsStorageOpen(virConnectPtr conn,
         goto error;
     }
 
-    for (size_t i = 0; i < privconn->pools.count; i++) {
+    for (i = 0; i < privconn->pools.count; i++) {
         virStoragePoolObjLock(privconn->pools.objs[i]);
         virStoragePoolObjPtr pool;
 
-- 
1.7.11.7




More information about the libvir-list mailing list