Module Name:    src
Committed By:   gson
Date:           Fri Dec  3 08:33:30 UTC 2021

Modified Files:
        src/sys/kern: kern_hook.c

Log Message:
Only one space after comma


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/kern/kern_hook.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/kern_hook.c
diff -u src/sys/kern/kern_hook.c:1.11 src/sys/kern/kern_hook.c:1.12
--- src/sys/kern/kern_hook.c:1.11	Thu Sep 30 07:15:02 2021
+++ src/sys/kern/kern_hook.c	Fri Dec  3 08:33:30 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_hook.c,v 1.11 2021/09/30 07:15:02 skrll Exp $	*/
+/*	$NetBSD: kern_hook.c,v 1.12 2021/12/03 08:33:30 gson Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998, 1999, 2002, 2007, 2008 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_hook.c,v 1.11 2021/09/30 07:15:02 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_hook.c,v 1.12 2021/12/03 08:33:30 gson Exp $");
 
 #include <sys/param.h>
 #include <sys/condvar.h>
@@ -524,7 +524,7 @@ simplehook_dohooks(khook_list_t *l)
 }
 
 khook_t *
-simplehook_establish(khook_list_t *l,  void (*fn)(void *), void *arg)
+simplehook_establish(khook_list_t *l, void (*fn)(void *), void *arg)
 {
 	struct hook_desc *hd;
 

Reply via email to