Module Name:    src
Committed By:   gutteridge
Date:           Thu Aug 11 23:53:04 UTC 2022

Modified Files:
        src/sys/kern: subr_prf.c
        src/sys/modules/luasystm: luasystm.c

Log Message:
subr_prf.c & luasystm.c: s/panicing/panicking/ in comments


To generate a diff of this commit:
cvs rdiff -u -r1.188 -r1.189 src/sys/kern/subr_prf.c
cvs rdiff -u -r1.5 -r1.6 src/sys/modules/luasystm/luasystm.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/kern/subr_prf.c
diff -u src/sys/kern/subr_prf.c:1.188 src/sys/kern/subr_prf.c:1.189
--- src/sys/kern/subr_prf.c:1.188	Sun Apr 17 09:09:13 2022
+++ src/sys/kern/subr_prf.c	Thu Aug 11 23:53:03 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr_prf.c,v 1.188 2022/04/17 09:09:13 riastradh Exp $	*/
+/*	$NetBSD: subr_prf.c,v 1.189 2022/08/11 23:53:03 gutteridge Exp $	*/
 
 /*-
  * Copyright (c) 1986, 1988, 1991, 1993
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_prf.c,v 1.188 2022/04/17 09:09:13 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_prf.c,v 1.189 2022/08/11 23:53:03 gutteridge Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddb.h"
@@ -223,7 +223,7 @@ vpanic(const char *fmt, va_list ap)
 
 	if (lwp0.l_cpu && curlwp) {
 		/*
-		 * Disable preemption.  If already panicing on another CPU, sit
+		 * Disable preemption.  If already panicking on another CPU, sit
 		 * here and spin until the system is rebooted.  Allow the CPU that
 		 * first panicked to panic again.
 		 */

Index: src/sys/modules/luasystm/luasystm.c
diff -u src/sys/modules/luasystm/luasystm.c:1.5 src/sys/modules/luasystm/luasystm.c:1.6
--- src/sys/modules/luasystm/luasystm.c:1.5	Sat Jul 19 18:38:35 2014
+++ src/sys/modules/luasystm/luasystm.c	Thu Aug 11 23:53:04 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: luasystm.c,v 1.5 2014/07/19 18:38:35 lneto Exp $ */
+/*	$NetBSD: luasystm.c,v 1.6 2022/08/11 23:53:04 gutteridge Exp $ */
 
 /*
  * Copyright (c) 2011, 2013 Marc Balmer <mbal...@netbsd.org>.
@@ -141,7 +141,7 @@ systm_aprint_get_error_count(lua_State *
 	return 1;
 }
 
-/* panicing */
+/* panicking */
 
 static int
 systm_panic(lua_State *L)
@@ -172,7 +172,7 @@ luaopen_systm(lua_State *L)
 		{ "aprint_error",		systm_aprint_error },
 		{ "aprint_get_error_count",	systm_aprint_get_error_count },
 
-		/* panicing */
+		/* panicking */
 		{ "panic",			systm_panic },
 
 		/* callouts */

Reply via email to