Skip to content

Commit

Permalink
Fix missing semicolon (#1551)
Browse files Browse the repository at this point in the history
Fix build non gki kernel
  • Loading branch information
diphons authored Mar 28, 2024
1 parent 4f05fe2 commit 4445747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/core_hook.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 4445747

Please sign in to comment.