mount: don't complain about ability to create mount dirs
authorRobert Swiecki <robert@swiecki.net>
Tue, 24 Oct 2017 23:45:39 +0000 (01:45 +0200)
committerRobert Swiecki <robert@swiecki.net>
Tue, 24 Oct 2017 23:45:39 +0000 (01:45 +0200)
mount.c

diff --git a/mount.c b/mount.c
index 1269f75..eabfc8d 100644 (file)
--- a/mount.c
+++ b/mount.c
@@ -255,7 +255,7 @@ static bool mountRemountRO(struct mounts_t* mpt)
 static bool mountMkdirAndTest(const char* dir)
 {
        if (mkdir(dir, 0755) == -1 && errno != EEXIST) {
-               PLOG_W("Couldn't create '%s' directory", dir);
+               PLOG_D("Couldn't create '%s' directory", dir);
                return false;
        }
        if (access(dir, R_OK) == -1) {