mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:27:34 +00:00
AK: Resolve clang-tidy readability-qualified-auto warnings
... In files included by Kernel/Process.cpp and Kernel/Thread.cpp
This commit is contained in:
parent
64edf17eb2
commit
762b92c650
3 changed files with 4 additions and 4 deletions
|
@ -405,7 +405,7 @@ private:
|
|||
auto old_capacity = m_capacity;
|
||||
Iterator old_iter = begin();
|
||||
|
||||
auto new_buckets = kmalloc(size_in_bytes(new_capacity));
|
||||
auto* new_buckets = kmalloc(size_in_bytes(new_capacity));
|
||||
if (!new_buckets)
|
||||
return Error::from_errno(ENOMEM);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue