Code

Merge branch 'ff/plugins-ng' of octo@verplant.org:/var/lib/git/collectd into ff/plugi...
[collectd.git] / src / memory.c
index a6fc1abf381db3572d479b02257226414d6bf2bc..b8b7229f6de74db7f6a2161370c58f08934ff28b 100644 (file)
@@ -23,6 +23,7 @@
 #include "collectd.h"
 #include "common.h"
 #include "plugin.h"
+#include "utils_debug.h"
 
 #ifdef HAVE_SYS_SYSCTL_H
 # include <sys/sysctl.h>
@@ -40,7 +41,7 @@
 #ifdef HAVE_MACH_HOST_PRIV_H
 # include <mach/host_priv.h>
 #endif
-#ifdef MACH_VM_STATISTICS_H
+#ifdef HAVE_MACH_VM_STATISTICS_H
 # include <mach/vm_statistics.h>
 #endif
 
@@ -217,7 +218,7 @@ static void memory_read (void)
                                                NULL, 0)) < 0)
                {
                        syslog (LOG_ERR, "memory plugin: sysctlbyname (%s): %s",
-                                       sysctl_keys[i], strerror (status));
+                                       sysctl_keys[i], strerror (errno));
                        return;
                }
                DBG ("%26s: %6i", sysctl_keys[i], sysctl_vals[i]);