diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_procs.c | 6 |
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 | ||
66 | int verbose = 0; | 66 | int verbose = 0; |
67 | int uid; | 67 | int uid; |
68 | int ppid; | 68 | pid_t ppid; |
69 | int vsz; | 69 | int vsz; |
70 | int rss; | 70 | int rss; |
71 | float pcpu; | 71 | float 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; |