summaryrefslogtreecommitdiffstats
path: root/plugins/check_load.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_load.c')
-rw-r--r--plugins/check_load.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/check_load.c b/plugins/check_load.c
index b918fa5..803467d 100644
--- a/plugins/check_load.c
+++ b/plugins/check_load.c
@@ -20,7 +20,7 @@
20 20
21const char *progname = "check_load"; 21const char *progname = "check_load";
22const char *revision = "$Revision$"; 22const char *revision = "$Revision$";
23const char *copyright = "1999-2003"; 23const char *copyright = "1999-2004";
24const char *email = "nagiosplug-devel@lists.sourceforge.net"; 24const char *email = "nagiosplug-devel@lists.sourceforge.net";
25 25
26#include "common.h" 26#include "common.h"
@@ -54,7 +54,8 @@ char *status_line;
54int 54int
55main (int argc, char **argv) 55main (int argc, char **argv)
56{ 56{
57 int result; 57 int result = STATE_UNKNOWN;
58
58#if HAVE_GETLOADAVG==1 59#if HAVE_GETLOADAVG==1
59 double la[3] = { 0.0, 0.0, 0.0 }; /* NetBSD complains about unitialized arrays */ 60 double la[3] = { 0.0, 0.0, 0.0 }; /* NetBSD complains about unitialized arrays */
60#else 61#else