Kernel: Fix typo proccess => process in a name of Process method

This commit is contained in:
Liav A
2023-02-20 22:19:46 +02:00
committed by Linus Groh
parent 12b7328c22
commit 9216caeec2
3 changed files with 3 additions and 3 deletions

View File

@@ -372,7 +372,7 @@ ErrorOr<void> ProcFSInode::try_fetch_process_property_data(NonnullLockRefPtr<Pro
return {};
}
if (parent_subdirectory_type == SegmentedProcFSIndex::ProcessSubDirectory::Children) {
TRY(process->procfs_get_child_proccess_link(m_possible_data.property_index, builder));
TRY(process->procfs_get_child_process_link(m_possible_data.property_index, builder));
return {};
}