summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2022-05-09 08:50:29 +0200
committerGitHub <noreply@github.com>2022-05-09 08:50:29 +0200
commitdf423851fcc05cf02281d11aab6aee7b476c1c3b (patch)
treef380217d63eb13cdc461dc9fad47fb9ccf293a93 /src/core
parentMerge pull request #23311 from keszybz/bootspec-fuzzer (diff)
parentshared/calendarspec: reduce scope of variables (diff)
downloadsystemd-df423851fcc05cf02281d11aab6aee7b476c1c3b.tar.xz
systemd-df423851fcc05cf02281d11aab6aee7b476c1c3b.zip
Merge pull request #23310 from keszybz/suppress-fuzzer-timeouts-and-errors
Suppress fuzzer timeouts and errors
Diffstat (limited to 'src/core')
-rw-r--r--src/core/manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/manager.c b/src/core/manager.c
index d09d14911c..98daa764eb 100644
--- a/src/core/manager.c
+++ b/src/core/manager.c
@@ -3655,7 +3655,7 @@ static bool generator_path_any(const char* const* paths) {
/* Optimize by skipping the whole process by not creating output directories
* if no generators are found. */
- STRV_FOREACH(path, (char**) paths)
+ STRV_FOREACH(path, paths)
if (access(*path, F_OK) == 0)
found = true;
else if (errno != ENOENT)