Commit 10bd25be authored by topjohnwu's avatar topjohnwu

Suppress harmless error logs

parent 65511845
......@@ -68,7 +68,7 @@ static void store_zygote_ns(int pid) {
}
static void lazy_unmount(const char* mountpoint) {
if (xumount2(mountpoint, MNT_DETACH) != -1)
if (umount2(mountpoint, MNT_DETACH) != -1)
LOGD("hide_daemon: Unmounted (%s)\n", mountpoint);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment