Source-Changes-HG archive

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

[src/trunk]: src/sys/kern fix flatly wrong indent



details:   https://anonhg.NetBSD.org/src/rev/4c97cb58291a
branches:  trunk
changeset: 451532:4c97cb58291a
user:      dholland <dholland%NetBSD.org@localhost>
date:      Sun May 26 19:23:04 2019 +0000

description:
fix flatly wrong indent

diffstat:

 sys/kern/kern_acct.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r e5d59cbbc92c -r 4c97cb58291a sys/kern/kern_acct.c
--- a/sys/kern/kern_acct.c      Sun May 26 17:48:47 2019 +0000
+++ b/sys/kern/kern_acct.c      Sun May 26 19:23:04 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kern_acct.c,v 1.95 2017/06/01 02:45:13 chs Exp $       */
+/*     $NetBSD: kern_acct.c,v 1.96 2019/05/26 19:23:04 dholland Exp $  */
 
 /*-
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -71,7 +71,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_acct.c,v 1.95 2017/06/01 02:45:13 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_acct.c,v 1.96 2019/05/26 19:23:04 dholland Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -152,7 +152,7 @@
        s += us / (1000000 / AHZ);      /* Maximize precision. */
 
        while (s > MAXFRACT) {
-       rnd = s & (1 << (EXPSIZE - 1)); /* Round up? */
+               rnd = s & (1 << (EXPSIZE - 1)); /* Round up? */
                s >>= EXPSIZE;          /* Base 8 exponent == 3 bit shift. */
                exp++;
        }



Home | Main Index | Thread Index | Old Index