summaryrefslogtreecommitdiffstats
path: root/src/core/automount.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2019-03-27 11:33:50 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2019-03-27 11:53:12 +0100
commit6e5dcce4b1a429246b84ab8171a7608105a0228b (patch)
tree8f34caf18205ed88f2d6b38040028b766fb7dbd6 /src/core/automount.c
parentheaders: remove unneeded includes from util.h (diff)
downloadsystemd-6e5dcce4b1a429246b84ab8171a7608105a0228b.tar.xz
systemd-6e5dcce4b1a429246b84ab8171a7608105a0228b.zip
Voidify more mkdir_p calls
Diffstat (limited to 'src/core/automount.c')
-rw-r--r--src/core/automount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/automount.c b/src/core/automount.c
index 8ffdad18c7..f425010cad 100644
--- a/src/core/automount.c
+++ b/src/core/automount.c
@@ -759,7 +759,7 @@ static void automount_enter_running(Automount *a) {
return;
}
- mkdir_p_label(a->where, a->directory_mode);
+ (void) mkdir_p_label(a->where, a->directory_mode);
/* Before we do anything, let's see if somebody is playing games with us? */
if (lstat(a->where, &st) < 0) {