summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/check_procs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_procs.c b/plugins/check_procs.c
index b866ac2..01acc93 100644
--- a/plugins/check_procs.c
+++ b/plugins/check_procs.c
@@ -65,7 +65,7 @@ enum metric metric = METRIC_PROCS;
65 65
66int verbose = 0; 66int verbose = 0;
67int uid; 67int uid;
68int ppid; 68pid_t ppid;
69int vsz; 69int vsz;
70int rss; 70int rss;
71float pcpu; 71float pcpu;
@@ -87,8 +87,8 @@ main (int argc, char **argv)
87 87
88 pid_t mypid = 0; 88 pid_t mypid = 0;
89 int procuid = 0; 89 int procuid = 0;
90 int procpid = 0; 90 pid_t procpid = 0;
91 int procppid = 0; 91 pid_t procppid = 0;
92 int procvsz = 0; 92 int procvsz = 0;
93 int procrss = 0; 93 int procrss = 0;
94 int procseconds = 0; 94 int procseconds = 0;