mirror of
https://github.com/RGBCube/serenity
synced 2025-05-29 07:15:08 +00:00
Kernel: Replace all usages of String::number with KString::number
This commit is contained in:
parent
aa1f7060af
commit
a4560313eb
2 changed files with 3 additions and 2 deletions
|
@ -51,7 +51,8 @@ ErrorOr<void> Process::traverse_stacks_directory(FileSystemID fsid, Function<Err
|
|||
for (auto const& thread : list) {
|
||||
int tid = thread.tid().value();
|
||||
InodeIdentifier identifier = { fsid, SegmentedProcFSIndex::build_segmented_index_for_thread_stack(pid(), thread.tid()) };
|
||||
TRY(callback({ String::number(tid), identifier, 0 }));
|
||||
auto name = TRY(KString::number(tid));
|
||||
TRY(callback({ name->view(), identifier, 0 }));
|
||||
}
|
||||
return {};
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue