mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 19:47:34 +00:00
Kernel: Fix incorrect return type on aarch64
InterruptController's model incorrectly returned a char[] instead of a StringView.
This commit is contained in:
parent
44cdca04d3
commit
bac4bdc5d2
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ private:
|
|||
|
||||
virtual StringView model() const override
|
||||
{
|
||||
return "Raspberry Pi Interrupt Controller";
|
||||
return "Raspberry Pi Interrupt Controller"sv;
|
||||
}
|
||||
|
||||
InterruptControllerRegisters volatile* m_registers;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue