Unwrap lines.

This commit is contained in:
skrll 2015-07-17 06:42:48 +00:00
parent 18b054e39f
commit 373bb6fc2c
1 changed files with 4 additions and 7 deletions

View File

@ -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 @@ netbsd32___adjtime50(struct lwp *l, const struct netbsd32___adjtime50_args *uap,
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);