Fix typo in syscall registration sanity test.

This commit is contained in:
Steve Dougherty 2013-05-08 19:59:35 +02:00 committed by Jonas 'Sortie' Termansen
parent 1ca946af2f
commit af2d8cb9de

View file

@ -61,7 +61,7 @@ namespace Sortix
if ( SYSCALL_MAX_NUM <= index )
{
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;