Fix missing semicolon (#1551)

Fix build non gki kernel
This commit is contained in:
D8G Official
2024-03-28 19:22:00 +07:00
committed by GitHub
parent 4f05fe226e
commit 444574739c

View File

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