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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_load.c b/plugins/check_load.c
index bdb1e55..c12cad3 100644
--- a/plugins/check_load.c
+++ b/plugins/check_load.c
@@ -158,8 +158,8 @@ process_arguments (int argc, char **argv)
158{ 158{
159 int c = 0; 159 int c = 0;
160 160
161 int option_index = 0; 161 int option = 0;
162 static struct option long_options[] = { 162 static struct option longopts[] = {
163 {"warning", required_argument, 0, 'w'}, 163 {"warning", required_argument, 0, 'w'},
164 {"critical", required_argument, 0, 'c'}, 164 {"critical", required_argument, 0, 'c'},
165 {"version", no_argument, 0, 'V'}, 165 {"version", no_argument, 0, 'V'},
@@ -171,7 +171,7 @@ process_arguments (int argc, char **argv)
171 return ERROR; 171 return ERROR;
172 172
173 while (1) { 173 while (1) {
174 c = getopt_long (argc, argv, "Vhc:w:", long_options, &option_index); 174 c = getopt_long (argc, argv, "Vhc:w:", longopts, &option);
175 175
176 if (c == -1 || c == EOF) 176 if (c == -1 || c == EOF)
177 break; 177 break;