Module Name: src
Committed By: reinoud
Date: Sat Jul 28 17:17:38 UTC 2018
Modified Files:
src/sys/arch/usermode/usermode: trap.c
Log Message:
Fix typo
To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 src/sys/arch/usermode/usermode/trap.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/usermode/usermode/trap.c
diff -u src/sys/arch/usermode/usermode/trap.c:1.68 src/sys/arch/usermode/usermode/trap.c:1.69
--- src/sys/arch/usermode/usermode/trap.c:1.68 Mon Jun 11 19:23:21 2018
+++ src/sys/arch/usermode/usermode/trap.c Sat Jul 28 17:17:38 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.68 2018/06/11 19:23:21 reinoud Exp $ */
+/* $NetBSD: trap.c,v 1.69 2018/07/28 17:17:38 reinoud Exp $ */
/*-
* Copyright (c) 2011 Reinoud Zandijk <[email protected]>
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.68 2018/06/11 19:23:21 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.69 2018/07/28 17:17:38 reinoud Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -320,7 +320,7 @@ handle_signal(int sig, siginfo_t *info,
l = curlwp; KASSERT(l);
pcb = lwp_getpcb(l); KASSERT(pcb);
- /* get address of possible faulted memory access and page aligne it */
+ /* get address of possible faulted memory access and page align it */
va = (vaddr_t) info->si_addr;
va = trunc_page(va);