summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-03-12 15:50:50 +0100
committerLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-03-12 15:50:50 +0100
commita746576b8cb72a3233caf5ac852b2679cc98d80c (patch)
treef4d8a835458c51aa385517f18ad21821925a6c66
parenta14b2b35776c7550123ce58af571913eb9d7819f (diff)
downloadmonitoring-plugins-a746576b8cb72a3233caf5ac852b2679cc98d80c.tar.gz
Fix initialisers for old compilers
-rw-r--r--plugins/check_procs.d/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_procs.d/config.h b/plugins/check_procs.d/config.h
index 815809d4..e32ca066 100644
--- a/plugins/check_procs.d/config.h
+++ b/plugins/check_procs.d/config.h
@@ -56,12 +56,12 @@ check_procs_config check_procs_config_init() {
56 .exclude_progs = NULL, 56 .exclude_progs = NULL,
57 .exclude_progs_arr = NULL, 57 .exclude_progs_arr = NULL,
58 .exclude_progs_counter = 0, 58 .exclude_progs_counter = 0,
59 .re_args = {}, 59 .re_args = {0},
60 60
61 .kthread_filter = false, 61 .kthread_filter = false,
62 .usepid = false, 62 .usepid = false,
63 .uid = {}, 63 .uid = 0,
64 .ppid = {}, 64 .ppid = 0,
65 .vsz = 0, 65 .vsz = 0,
66 .rss = 0, 66 .rss = 0,
67 .pcpu = 0, 67 .pcpu = 0,