Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/netbsd32 whitespace police.



details:   https://anonhg.NetBSD.org/src/rev/ffbb37863fab
branches:  trunk
changeset: 339160:ffbb37863fab
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Jun 30 11:56:27 2015 +0000

description:
whitespace police.

diffstat:

 sys/compat/netbsd32/netbsd32_mqueue.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r 21909e2f8454 -r ffbb37863fab sys/compat/netbsd32/netbsd32_mqueue.c
--- a/sys/compat/netbsd32/netbsd32_mqueue.c     Tue Jun 30 11:46:47 2015 +0000
+++ b/sys/compat/netbsd32/netbsd32_mqueue.c     Tue Jun 30 11:56:27 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32_mqueue.c,v 1.4 2015/06/30 06:01:04 martin Exp $       */
+/*     $NetBSD: netbsd32_mqueue.c,v 1.5 2015/06/30 11:56:27 christos Exp $     */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_mqueue.c,v 1.4 2015/06/30 06:01:04 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_mqueue.c,v 1.5 2015/06/30 11:56:27 christos Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_compat_netbsd.h"
@@ -61,8 +61,8 @@
        struct mq_attr *attr = NULL, a;
        int error;
 
-       if ((SCARG(uap, oflag) & O_CREAT) && (SCARG_P32(uap,attr) != NULL)) {
-               error = copyin(SCARG_P32(uap,attr), &attr32, sizeof(attr32));
+       if ((SCARG(uap, oflag) & O_CREAT) && SCARG_P32(uap, attr) != NULL) {
+               error = copyin(SCARG_P32(uap, attr), &attr32, sizeof(attr32));
                if (error)
                        return error;
                netbsd32_to_mq_attr(&attr32, &a);



Home | Main Index | Thread Index | Old Index