Source-Changes-HG archive

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

[src/trunk]: src/sys/fs/efs Curious typo. Harmless. Found by Brainy



details:   https://anonhg.NetBSD.org/src/rev/db9208406ccf
branches:  trunk
changeset: 340726:db9208406ccf
user:      maxv <maxv%NetBSD.org@localhost>
date:      Sat Sep 26 12:16:28 2015 +0000

description:
Curious typo. Harmless. Found by Brainy

diffstat:

 sys/fs/efs/efs_subr.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 16c0a3770d78 -r db9208406ccf sys/fs/efs/efs_subr.c
--- a/sys/fs/efs/efs_subr.c     Sat Sep 26 11:16:12 2015 +0000
+++ b/sys/fs/efs/efs_subr.c     Sat Sep 26 12:16:28 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: efs_subr.c,v 1.11 2015/03/28 19:24:05 maxv Exp $       */
+/*     $NetBSD: efs_subr.c,v 1.12 2015/09/26 12:16:28 maxv Exp $       */
 
 /*
  * Copyright (c) 2006 Stephen M. Rumble <rumble%ephemeral.org@localhost>
@@ -17,7 +17,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: efs_subr.c,v 1.11 2015/03/28 19:24:05 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: efs_subr.c,v 1.12 2015/09/26 12:16:28 maxv Exp $");
 
 #include <sys/param.h>
 #include <sys/kauth.h>
@@ -136,7 +136,7 @@
 
        cgisize = be16toh(sbp->sb_cgisize);
        cgfsize = be32toh(sbp->sb_cgfsize);
-       firstcg = be32toh(sbp->sb_firstcg),
+       firstcg = be32toh(sbp->sb_firstcg);
 
        *bboff = firstcg + ((ino / (cgisize * EFS_DINODES_PER_BB)) * cgfsize) +
            ((ino % (cgisize * EFS_DINODES_PER_BB)) / EFS_DINODES_PER_BB);



Home | Main Index | Thread Index | Old Index