From af2d8cb9dec871ca4243ff81d3ff61d9a99c02f4 Mon Sep 17 00:00:00 2001 From: Steve Dougherty Date: Wed, 8 May 2013 19:59:35 +0200 Subject: [PATCH] Fix typo in syscall registration sanity test. --- sortix/syscall.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sortix/syscall.cpp b/sortix/syscall.cpp index 926d6703..a9251497 100644 --- a/sortix/syscall.cpp +++ b/sortix/syscall.cpp @@ -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;