diff options
Diffstat (limited to 'Kernel/FileSystem/Inode.cpp')
-rw-r--r-- | Kernel/FileSystem/Inode.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Kernel/FileSystem/Inode.cpp b/Kernel/FileSystem/Inode.cpp index b0e91bafc5..62e425dccb 100644 --- a/Kernel/FileSystem/Inode.cpp +++ b/Kernel/FileSystem/Inode.cpp @@ -229,19 +229,19 @@ void Inode::set_metadata_dirty(bool metadata_dirty) } } -void Inode::did_add_child(const String& name) +void Inode::did_add_child(const InodeIdentifier& child_id) { LOCKER(m_lock); for (auto& watcher : m_watchers) { - watcher->notify_child_added({}, name); + watcher->notify_child_added({}, child_id); } } -void Inode::did_remove_child(const String& name) +void Inode::did_remove_child(const InodeIdentifier& child_id) { LOCKER(m_lock); for (auto& watcher : m_watchers) { - watcher->notify_child_removed({}, name); + watcher->notify_child_removed({}, child_id); } } |