From 444574739c0ab06db131c3ac58d37d456f3f48ad Mon Sep 17 00:00:00 2001 From: D8G Official Date: Thu, 28 Mar 2024 19:22:00 +0700 Subject: [PATCH] Fix missing semicolon (#1551) Fix build non gki kernel --- kernel/core_hook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/core_hook.c b/kernel/core_hook.c index cdd36b3269dd..fef98df1515e 100644 --- a/kernel/core_hook.c +++ b/kernel/core_hook.c @@ -444,7 +444,7 @@ static int ksu_umount_mnt(struct path *path, int flags) return path_umount(path, flags); #else // TODO: umount for non GKI kernel - return -ENOSYS + return -ENOSYS; #endif }