mountIsDir: PLOG_E() -> PLOG_W()
authorRobert Swiecki <robert@swiecki.net>
Sat, 27 May 2017 17:18:56 +0000 (19:18 +0200)
committerRobert Swiecki <robert@swiecki.net>
Sat, 27 May 2017 17:18:56 +0000 (19:18 +0200)
mount.c

diff --git a/mount.c b/mount.c
index fc92ec35aeb7ca1cc9e5c3e3e9a85ebb2feb050b..a7a969106120811a074013183abb10ef2a8499c6 100644 (file)
--- a/mount.c
+++ b/mount.c
@@ -108,7 +108,7 @@ bool mountIsDir(const char *path)
        }
        struct stat st;
        if (stat(path, &st) == -1) {
-               PLOG_E("stat('%s')", path);
+               PLOG_W("stat('%s')", path);
                return false;
        }
        if (S_ISDIR(st.st_mode)) {