mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-28 11:21:44 +03:00
nodeinfo: remove superflous braces
that break compilation on non intel architectures: mips: https://buildd.debian.org/status/fetch.php?pkg=libvirt&arch=mips&ver=0.9.2-1&stamp=1307570195 powerpc: https://buildd.debian.org/status/fetch.php?pkg=libvirt&arch=powerpc&ver=0.9.2-1&stamp=1307550913 s390: https://buildd.debian.org/status/fetch.php?pkg=libvirt&arch=s390&ver=0.9.2-1&stamp=1307641748 sparc: https://buildd.debian.org/status/fetch.php?pkg=libvirt&arch=sparc&ver=0.9.2-1&stamp=1307552926
This commit is contained in:
parent
e22a6e9dd1
commit
15743e94d5
@ -248,7 +248,6 @@ int linuxNodeInfoCPUPopulate(FILE *cpuinfo,
|
||||
&& (*p == '\0' || c_isspace(*p))
|
||||
&& id > nodeinfo->cores)
|
||||
nodeinfo->cores = id;
|
||||
}
|
||||
# elif defined(__powerpc__) || \
|
||||
defined(__powerpc64__)
|
||||
} else if (STRPREFIX(buf, "clock")) {
|
||||
@ -266,7 +265,6 @@ int linuxNodeInfoCPUPopulate(FILE *cpuinfo,
|
||||
/* Accept trailing fractional part. */
|
||||
&& (*p == '\0' || *p == '.' || c_isspace(*p)))
|
||||
nodeinfo->mhz = ui;
|
||||
}
|
||||
# elif defined(__s390__) || \
|
||||
defined(__s390x__)
|
||||
} else if (STRPREFIX(buf, "# processors")) {
|
||||
@ -289,10 +287,10 @@ int linuxNodeInfoCPUPopulate(FILE *cpuinfo,
|
||||
* and parsed in next iteration, because it is not in expected
|
||||
* format and thus lead to error. */
|
||||
break;
|
||||
}
|
||||
# else
|
||||
# warning Parser for /proc/cpuinfo needs to be adapted for your architecture
|
||||
# endif
|
||||
}
|
||||
}
|
||||
|
||||
if (!nodeinfo->cpus) {
|
||||
|
Loading…
Reference in New Issue
Block a user