Source-Changes-HG archive

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

[src/trunk]: src/sys/kern Excommunicate comment not abiding to the 80col dogma.



details:   https://anonhg.NetBSD.org/src/rev/42196cc8b72e
branches:  trunk
changeset: 748795:42196cc8b72e
user:      pooka <pooka%NetBSD.org@localhost>
date:      Thu Nov 05 16:15:51 2009 +0000

description:
Excommunicate comment not abiding to the 80col dogma.
(well, turns out it was no longer valid either)

diffstat:

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

diffs (27 lines):

diff -r e9066d0e4651 -r 42196cc8b72e sys/kern/vfs_bio.c
--- a/sys/kern/vfs_bio.c        Thu Nov 05 15:23:55 2009 +0000
+++ b/sys/kern/vfs_bio.c        Thu Nov 05 16:15:51 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vfs_bio.c,v 1.218 2009/03/11 05:55:22 mrg Exp $        */
+/*     $NetBSD: vfs_bio.c,v 1.219 2009/11/05 16:15:51 pooka Exp $      */
 
 /*-
  * Copyright (c) 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -107,7 +107,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_bio.c,v 1.218 2009/03/11 05:55:22 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_bio.c,v 1.219 2009/11/05 16:15:51 pooka Exp $");
 
 #include "fs_ffs.h"
 #include "opt_bufcache.h"
@@ -719,7 +719,7 @@
 
        /* Wait for the read to complete, and return result. */
        error = biowait(bp);
-       if (error == 0 && (flags & B_MODIFY) != 0)      /* XXXX before the next code block or after? */
+       if (error == 0 && (flags & B_MODIFY) != 0)
                error = fscow_run(bp, true);
 
        return error;



Home | Main Index | Thread Index | Old Index