Fix preprocessor indentation in nodeinfo.c

This commit is contained in:
Matthias Bolte 2011-06-20 10:39:09 +02:00
parent 7e3205cd10
commit d967a8bfa4

View File

@ -685,23 +685,23 @@ int nodeGetMemoryStats(virConnectPtr conn ATTRIBUTE_UNUSED,
return -1; return -1;
} }
} else { } else {
#if HAVE_NUMACTL # if HAVE_NUMACTL
if (numa_available() < 0) { if (numa_available() < 0) {
#endif # endif
nodeReportError(VIR_ERR_NO_SUPPORT, nodeReportError(VIR_ERR_NO_SUPPORT,
"%s", _("NUMA not supported on this host")); "%s", _("NUMA not supported on this host"));
return -1; return -1;
#if HAVE_NUMACTL # if HAVE_NUMACTL
} }
#endif # endif
#if HAVE_NUMACTL # if HAVE_NUMACTL
if (cellNum > numa_max_node()) { if (cellNum > numa_max_node()) {
nodeReportError(VIR_ERR_INVALID_ARG, "%s", nodeReportError(VIR_ERR_INVALID_ARG, "%s",
_("Invalid cell number")); _("Invalid cell number"));
return -1; return -1;
} }
#endif # endif
if (virAsprintf(&meminfo_path, "%s/node%d/meminfo", if (virAsprintf(&meminfo_path, "%s/node%d/meminfo",
NODE_SYS_PATH, cellNum) < 0) { NODE_SYS_PATH, cellNum) < 0) {