Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/netbsd32 Unwrap lines.
details: https://anonhg.NetBSD.org/src/rev/d3f2ffa1aa1c
branches: trunk
changeset: 339364:d3f2ffa1aa1c
user: skrll <skrll%NetBSD.org@localhost>
date: Fri Jul 17 06:42:48 2015 +0000
description:
Unwrap lines.
diffstat:
sys/compat/netbsd32/netbsd32_time.c | 11 ++++-------
1 files changed, 4 insertions(+), 7 deletions(-)
diffs (37 lines):
diff -r 6c135fa5fdfe -r d3f2ffa1aa1c sys/compat/netbsd32/netbsd32_time.c
--- a/sys/compat/netbsd32/netbsd32_time.c Fri Jul 17 06:41:18 2015 +0000
+++ b/sys/compat/netbsd32/netbsd32_time.c Fri Jul 17 06:42:48 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: netbsd32_time.c,v 1.43 2015/07/12 14:06:52 martin Exp $ */
+/* $NetBSD: netbsd32_time.c,v 1.44 2015/07/17 06:42:48 skrll Exp $ */
/*
* Copyright (c) 1998, 2001 Matthew R. Green
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_time.c,v 1.43 2015/07/12 14:06:52 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_time.c,v 1.44 2015/07/17 06:42:48 skrll Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ntp.h"
@@ -323,16 +323,13 @@
atv.tv_usec += 1000000;
atv.tv_sec--;
}
- (void) copyout(&atv,
- SCARG_P32(uap, olddelta),
- sizeof(atv));
+ (void) copyout(&atv, SCARG_P32(uap, olddelta), sizeof(atv));
if (error)
return (error);
}
if (SCARG_P32(uap, delta)) {
- error = copyin(SCARG_P32(uap, delta), &atv,
- sizeof(atv));
+ error = copyin(SCARG_P32(uap, delta), &atv, sizeof(atv));
if (error)
return (error);
Home |
Main Index |
Thread Index |
Old Index