1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 14:05:08 +00:00

Kernel: Use Vector::unstable_remove() in a couple of places

This commit is contained in:
Andreas Kling 2020-01-15 19:25:27 +01:00
parent 575664cda3
commit e23536d682
3 changed files with 5 additions and 5 deletions

View file

@ -73,7 +73,7 @@ KResult VFS::unmount(InodeIdentifier guest_inode_id)
return result;
}
dbg() << "VFS: found fs " << mount.guest_fs().fsid() << " at mount index " << i << "! Unmounting...";
m_mounts.remove(i);
m_mounts.unstable_remove(i);
return KSuccess;
}
}