Module Name:    src
Committed By:   dholland
Date:           Thu Mar 22 17:46:07 UTC 2012

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

Log Message:
Misplaced parenthesis; fixes PR 44927


To generate a diff of this commit:
cvs rdiff -u -r1.173 -r1.174 src/sys/kern/kern_time.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_time.c
diff -u src/sys/kern/kern_time.c:1.173 src/sys/kern/kern_time.c:1.174
--- src/sys/kern/kern_time.c:1.173	Mon Feb 20 01:12:42 2012
+++ src/sys/kern/kern_time.c	Thu Mar 22 17:46:07 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_time.c,v 1.173 2012/02/20 01:12:42 rmind Exp $	*/
+/*	$NetBSD: kern_time.c,v 1.174 2012/03/22 17:46:07 dholland Exp $	*/
 
 /*-
  * Copyright (c) 2000, 2004, 2005, 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -61,7 +61,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_time.c,v 1.173 2012/02/20 01:12:42 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_time.c,v 1.174 2012/03/22 17:46:07 dholland Exp $");
 
 #include <sys/param.h>
 #include <sys/resourcevar.h>
@@ -1063,7 +1063,7 @@ sys___setitimer50(struct lwp *l, const s
 		return (EINVAL);
 	itvp = SCARG(uap, itv);
 	if (itvp &&
-	    (error = copyin(itvp, &aitv, sizeof(struct itimerval)) != 0))
+	    (error = copyin(itvp, &aitv, sizeof(struct itimerval))) != 0)
 		return (error);
 	if (SCARG(uap, oitv) != NULL) {
 		SCARG(&getargs, which) = which;

Reply via email to