From: Zbigniew Jędrzejewski-Szmek Date: Fri, 12 Apr 2019 07:03:52 +0000 (+0200) Subject: core: vodify one more call to mkdir X-Git-Tag: v243-rc1~565^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12287%2Fhead;p=thirdparty%2Fsystemd.git core: vodify one more call to mkdir CID #1400460. --- diff --git a/src/core/manager.c b/src/core/manager.c index 4154aec12f5..24559a45f3a 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -288,7 +288,7 @@ static int manager_check_ask_password(Manager *m) { if (!m->ask_password_event_source) { assert(m->ask_password_inotify_fd < 0); - mkdir_p_label("/run/systemd/ask-password", 0755); + (void) mkdir_p_label("/run/systemd/ask-password", 0755); m->ask_password_inotify_fd = inotify_init1(IN_NONBLOCK|IN_CLOEXEC); if (m->ask_password_inotify_fd < 0)