From 6e5ca1ed9ec036f4d07a0d9627a53f4650271930 Mon Sep 17 00:00:00 2001 From: pooka Date: Mon, 9 Aug 2010 17:12:18 +0000 Subject: [PATCH] add a linefeed to the previous --- sys/ufs/ffs/ffs_vfsops.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index f58b19f5a934..3fbd311fc350 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -1,4 +1,4 @@ -/* $NetBSD: ffs_vfsops.c,v 1.261 2010/08/09 15:50:13 pooka Exp $ */ +/* $NetBSD: ffs_vfsops.c,v 1.262 2010/08/09 17:12:18 pooka Exp $ */ /*- * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc. @@ -61,7 +61,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: ffs_vfsops.c,v 1.261 2010/08/09 15:50:13 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ffs_vfsops.c,v 1.262 2010/08/09 17:12:18 pooka Exp $"); #if defined(_KERNEL_OPT) #include "opt_ffs.h" @@ -940,7 +940,7 @@ ffs_mountfs(struct vnode *devvp, struct mount *mp, struct lwp *l) /* Check that we can handle the file system blocksize */ if (fsbsize > MAXBSIZE) { - printf("ffs_mountfs: block size (%d) > MAXBSIZE (%d)", + printf("ffs_mountfs: block size (%d) > MAXBSIZE (%d)\n", fsbsize, MAXBSIZE); continue; }