mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix typo in syscall registration sanity test.
This commit is contained in:
parent
1ca946af2f
commit
af2d8cb9de
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ namespace Sortix
|
||||||
if ( SYSCALL_MAX_NUM <= index )
|
if ( SYSCALL_MAX_NUM <= index )
|
||||||
{
|
{
|
||||||
PanicF("attempted to register syscall 0x%p to index %zu, but "
|
PanicF("attempted to register syscall 0x%p to index %zu, but "
|
||||||
"SYSCALL_MAX_NYN = %zu", funcptr, index, SYSCALL_MAX_NUM);
|
"SYSCALL_MAX_NUM = %zu", funcptr, index, SYSCALL_MAX_NUM);
|
||||||
}
|
}
|
||||||
|
|
||||||
syscall_list[index] = funcptr;
|
syscall_list[index] = funcptr;
|
||||||
|
|
Loading…
Add table
Reference in a new issue