summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2023-09-30 10:59:26 (GMT)
committerLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2023-09-30 10:59:26 (GMT)
commit128a24be2296af175c5e7adf875f9d0e8a619278 (patch)
treead564e087af9023c913bfda089825480da48ab56
parent51aa8b2d9d3812b74fb4d15da712a31d549d928b (diff)
downloadmonitoring-plugins-128a24be2296af175c5e7adf875f9d0e8a619278.tar.gz
Fix typo
-rw-r--r--lib/utils_disk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils_disk.c b/lib/utils_disk.c
index 884f005..f5ac0b3 100644
--- a/lib/utils_disk.c
+++ b/lib/utils_disk.c
@@ -63,7 +63,7 @@ np_add_regex (struct regex_list **list, const char *regex, int cflags)
63 int regcomp_result = regcomp(&new_entry->regex, regex, cflags); 63 int regcomp_result = regcomp(&new_entry->regex, regex, cflags);
64 64
65 if (!regcomp_result) { 65 if (!regcomp_result) {
66 // regcomp succeded 66 // regcomp succeeded
67 new_entry->next = *list; 67 new_entry->next = *list;
68 *list = new_entry; 68 *list = new_entry;
69 69