mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00
Kernel: Remove redundant (K)String::characters() calls
This commit is contained in:
parent
1d2f78682b
commit
2175c689ef
Notes:
sideshowbarker
2024-07-17 21:57:18 +09:00
Author: https://github.com/BertalanD
Commit: 2175c689ef
Pull-request: https://github.com/SerenityOS/serenity/pull/11501
3 changed files with 3 additions and 3 deletions
|
@ -372,7 +372,7 @@ private:
|
|||
result = pseudo_path_or_error.release_error();
|
||||
return IterationDecision::Break;
|
||||
}
|
||||
fs_object.add("source", pseudo_path_or_error.value()->characters());
|
||||
fs_object.add("source", pseudo_path_or_error.value()->view());
|
||||
} else {
|
||||
fs_object.add("source", "none");
|
||||
}
|
||||
|
|
|
@ -181,7 +181,7 @@ UNMAP_AFTER_INIT NE2000NetworkAdapter::NE2000NetworkAdapter(PCI::Address address
|
|||
|
||||
reset();
|
||||
set_mac_address(m_mac_address);
|
||||
dmesgln("NE2000: MAC address: {}", m_mac_address.to_string().characters());
|
||||
dmesgln("NE2000: MAC address: {}", m_mac_address.to_string());
|
||||
enable_irq();
|
||||
}
|
||||
|
||||
|
|
|
@ -286,7 +286,7 @@ ErrorOr<void> Process::procfs_get_tty_link(KBufferBuilder& builder) const
|
|||
{
|
||||
if (m_tty.is_null())
|
||||
return Error::from_errno(ENOENT);
|
||||
return builder.append(m_tty->tty_name().characters());
|
||||
return builder.append(m_tty->tty_name().view());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue