Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/common PR/50947: David Binderman: sprinkle parens
details: https://anonhg.NetBSD.org/src/rev/c209e540b252
branches: trunk
changeset: 344054:c209e540b252
user: christos <christos%NetBSD.org@localhost>
date: Fri Mar 11 18:32:29 2016 +0000
description:
PR/50947: David Binderman: sprinkle parens
diffstat:
sys/compat/common/kern_time_50.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r ee6cd78d5b9b -r c209e540b252 sys/compat/common/kern_time_50.c
--- a/sys/compat/common/kern_time_50.c Fri Mar 11 18:31:03 2016 +0000
+++ b/sys/compat/common/kern_time_50.c Fri Mar 11 18:32:29 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_time_50.c,v 1.30 2015/12/07 03:25:57 pgoyette Exp $ */
+/* $NetBSD: kern_time_50.c,v 1.31 2016/03/11 18:32:29 christos Exp $ */
/*-
* Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_time_50.c,v 1.30 2015/12/07 03:25:57 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_time_50.c,v 1.31 2016/03/11 18:32:29 christos Exp $");
#ifdef _KERNEL_OPT
#include "opt_aio.h"
@@ -293,7 +293,7 @@
return (EINVAL);
itvp = SCARG(uap, itv);
if (itvp &&
- (error = copyin(itvp, &aitv50, sizeof(aitv50)) != 0))
+ (error = copyin(itvp, &aitv50, sizeof(aitv50))) != 0)
return (error);
itimerval50_to_itimerval(&aitv50, &aitv);
if (SCARG(uap, oitv) != NULL) {
Home |
Main Index |
Thread Index |
Old Index