From 10bd25be52a09ab82eed86a95ad18cfbc67f4781 Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Fri, 12 Jan 2018 00:23:38 +0800 Subject: [PATCH] Suppress harmless error logs --- core/jni/magiskhide/proc_monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/jni/magiskhide/proc_monitor.c b/core/jni/magiskhide/proc_monitor.c index 0e132f7c7..36a0c4a91 100644 --- a/core/jni/magiskhide/proc_monitor.c +++ b/core/jni/magiskhide/proc_monitor.c @@ -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); }