Module Name:    src
Committed By:   dholland
Date:           Sun Jul 19 04:16:23 UTC 2009

Modified Files:
        src/sys/ufs/lfs: lfs_debug.c

Log Message:
minor knf


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/sys/ufs/lfs/lfs_debug.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/ufs/lfs/lfs_debug.c
diff -u src/sys/ufs/lfs/lfs_debug.c:1.37 src/sys/ufs/lfs/lfs_debug.c:1.38
--- src/sys/ufs/lfs/lfs_debug.c:1.37	Mon Apr 28 20:24:11 2008
+++ src/sys/ufs/lfs/lfs_debug.c	Sun Jul 19 04:16:23 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: lfs_debug.c,v 1.37 2008/04/28 20:24:11 martin Exp $	*/
+/*	$NetBSD: lfs_debug.c,v 1.38 2009/07/19 04:16:23 dholland Exp $	*/
 
 /*-
  * Copyright (c) 1999, 2000, 2001, 2002, 2003 The NetBSD Foundation, Inc.
@@ -60,7 +60,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lfs_debug.c,v 1.37 2008/04/28 20:24:11 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lfs_debug.c,v 1.38 2009/07/19 04:16:23 dholland Exp $");
 
 #ifdef DEBUG
 
@@ -82,9 +82,11 @@
 int lfs_lognum;
 struct lfs_log_entry lfs_log[LFS_LOGLENGTH];
 
-int lfs_bwrite_log(struct buf *bp, const char *file, int line)
+int
+lfs_bwrite_log(struct buf *bp, const char *file, int line)
 {
 	struct vop_bwrite_args a;
+
 	a.a_desc = VDESC(vop_bwrite);
 	a.a_bp = bp;
 
@@ -95,7 +97,8 @@
 	return (VCALL(bp->b_vp, VOFFSET(vop_bwrite), &a));
 }
 
-void lfs_dumplog(void)
+void
+lfs_dumplog(void)
 {
 	int i;
 	const char *cp;

Reply via email to