diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2023-09-30 10:59:26 (GMT) |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2023-09-30 10:59:26 (GMT) |
commit | 128a24be2296af175c5e7adf875f9d0e8a619278 (patch) | |
tree | ad564e087af9023c913bfda089825480da48ab56 /lib | |
parent | 51aa8b2d9d3812b74fb4d15da712a31d549d928b (diff) | |
download | monitoring-plugins-128a24be2296af175c5e7adf875f9d0e8a619278.tar.gz |
Fix typo
Diffstat (limited to 'lib')
-rw-r--r-- | lib/utils_disk.c | 2 |
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 | ||