Suppress harmless error logs

This commit is contained in:
topjohnwu 2018-01-12 00:23:38 +08:00
parent 65511845d2
commit 10bd25be52

View File

@ -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);
}