mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 02:40:49 +00:00
AK: Make Vector::unstable_remove() return the removed value
...and rename it to unstable_take(), to align with other take...() methods.
This commit is contained in:
committed by
Andreas Kling
parent
63f458ffc1
commit
6111cfda73
@@ -119,7 +119,7 @@ KResult VFS::unmount(Inode& guest_inode)
|
||||
return result;
|
||||
}
|
||||
dbg() << "VFS: found fs " << mount.guest_fs().fsid() << " at mount index " << i << "! Unmounting...";
|
||||
m_mounts.unstable_remove(i);
|
||||
m_mounts.unstable_take(i);
|
||||
return KSuccess;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user