mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:07:45 +00:00
Kernel: Mark read only RegisterState function parameters as const
This commit is contained in:
parent
27e1120dff
commit
85e95105c6
4 changed files with 4 additions and 4 deletions
|
@ -210,7 +210,7 @@ static void dump(const RegisterState& regs)
|
|||
#endif
|
||||
}
|
||||
|
||||
void handle_crash(RegisterState& regs, const char* description, int signal, bool out_of_memory)
|
||||
void handle_crash(RegisterState const& regs, char const* description, int signal, bool out_of_memory)
|
||||
{
|
||||
auto process = Process::current();
|
||||
if (!process) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue