Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/kern fix indentation
details: https://anonhg.NetBSD.org/src/rev/784215ffddb0
branches: trunk
changeset: 977671:784215ffddb0
user: christos <christos%NetBSD.org@localhost>
date: Fri Oct 30 22:19:00 2020 +0000
description:
fix indentation
diffstat:
sys/dev/sysmon/sysmon_power.c | 20 ++++++++++----------
sys/kern/kern_sig.c | 12 ++++++------
2 files changed, 16 insertions(+), 16 deletions(-)
diffs (75 lines):
diff -r 8e7f4b695bca -r 784215ffddb0 sys/dev/sysmon/sysmon_power.c
--- a/sys/dev/sysmon/sysmon_power.c Fri Oct 30 22:14:03 2020 +0000
+++ b/sys/dev/sysmon/sysmon_power.c Fri Oct 30 22:19:00 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sysmon_power.c,v 1.64 2020/06/11 02:39:31 thorpej Exp $ */
+/* $NetBSD: sysmon_power.c,v 1.65 2020/10/30 22:19:18 christos Exp $ */
/*-
* Copyright (c) 2007 Juan Romero Pardines.
@@ -69,7 +69,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sysmon_power.c,v 1.64 2020/06/11 02:39:31 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sysmon_power.c,v 1.65 2020/10/30 22:19:18 christos Exp $");
#ifdef _KERNEL_OPT
#include "opt_compat_netbsd.h"
@@ -555,17 +555,17 @@
}
static const struct filterops sysmon_power_read_filtops = {
- .f_isfd = 1,
- .f_attach = NULL,
- .f_detach = filt_sysmon_power_rdetach,
- .f_event = filt_sysmon_power_read,
+ .f_isfd = 1,
+ .f_attach = NULL,
+ .f_detach = filt_sysmon_power_rdetach,
+ .f_event = filt_sysmon_power_read,
};
static const struct filterops sysmon_power_write_filtops = {
- .f_isfd = 1,
- .f_attach = NULL,
- .f_detach = filt_sysmon_power_rdetach,
- .f_event = filt_seltrue,
+ .f_isfd = 1,
+ .f_attach = NULL,
+ .f_detach = filt_sysmon_power_rdetach,
+ .f_event = filt_seltrue,
};
/*
diff -r 8e7f4b695bca -r 784215ffddb0 sys/kern/kern_sig.c
--- a/sys/kern/kern_sig.c Fri Oct 30 22:14:03 2020 +0000
+++ b/sys/kern/kern_sig.c Fri Oct 30 22:19:00 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_sig.c,v 1.393 2020/10/26 17:35:39 christos Exp $ */
+/* $NetBSD: kern_sig.c,v 1.394 2020/10/30 22:19:00 christos Exp $ */
/*-
* Copyright (c) 2006, 2007, 2008, 2019 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.393 2020/10/26 17:35:39 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.394 2020/10/30 22:19:00 christos Exp $");
#include "opt_execfmt.h"
#include "opt_ptrace.h"
@@ -2682,8 +2682,8 @@
}
const struct filterops sig_filtops = {
- .f_isfd = 0,
- .f_attach = filt_sigattach,
- .f_detach = filt_sigdetach,
- .f_event = filt_signal,
+ .f_isfd = 0,
+ .f_attach = filt_sigattach,
+ .f_detach = filt_sigdetach,
+ .f_event = filt_signal,
};
Home |
Main Index |
Thread Index |
Old Index