projects
/
platform
/
upstream
/
nsjail.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e342959
)
mountIsDir: PLOG_E() -> PLOG_W()
author
Robert Swiecki
<robert@swiecki.net>
Sat, 27 May 2017 17:18:56 +0000
(19:18 +0200)
committer
Robert Swiecki
<robert@swiecki.net>
Sat, 27 May 2017 17:18:56 +0000
(19:18 +0200)
mount.c
patch
|
blob
|
history
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)) {