]> xenbits.xensource.com Git - libvirt.git/commitdiff
Fix preprocessor indentation in nodeinfo.c
authorMatthias Bolte <matthias.bolte@googlemail.com>
Mon, 20 Jun 2011 08:39:09 +0000 (10:39 +0200)
committerMatthias Bolte <matthias.bolte@googlemail.com>
Mon, 20 Jun 2011 08:39:09 +0000 (10:39 +0200)
src/nodeinfo.c

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