There seem to be two messages that were added with soft-updates

support, which need a final "\n". I only observed one line of
mangled output, but I think there is another one which suffers
from the same problem, and thus I provide a patch that covers
both.

PR:		7483
Reviewed by:	phk
Submitted by:	Stefan Esser <se@FreeBSD.org>
This commit is contained in:
Poul-Henning Kamp 1998-08-04 09:19:03 +00:00
parent 3114fdb4c0
commit 7c949108fb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38067
3 changed files with 9 additions and 9 deletions

View File

@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)pass5.c 8.9 (Berkeley) 4/28/95";
#endif
static const char rcsid[] =
"$Id: pass5.c,v 1.11 1998/06/15 07:07:19 charnier Exp $";
"$Id: pass5.c,v 1.12 1998/06/28 19:23:02 bde Exp $";
#endif /* not lint */
#include <sys/param.h>
@ -324,7 +324,7 @@ pass5()
continue;
if (cg_inosused(cg)[i] & (1 << k))
continue;
pwarn("ALLOCATED INODE %d MARKED FREE",
pwarn("ALLOCATED INODE %d MARKED FREE\n",
c * fs->fs_ipg + i * 8 + k);
}
}
@ -337,7 +337,7 @@ pass5()
continue;
if (cg_blksfree(newcg)[i] & (1 << k))
continue;
pwarn("ALLOCATED FRAG %d MARKED FREE",
pwarn("ALLOCATED FRAG %d MARKED FREE\n",
c * fs->fs_fpg + i * 8 + k);
}
}

View File

@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)pass5.c 8.9 (Berkeley) 4/28/95";
#endif
static const char rcsid[] =
"$Id: pass5.c,v 1.11 1998/06/15 07:07:19 charnier Exp $";
"$Id: pass5.c,v 1.12 1998/06/28 19:23:02 bde Exp $";
#endif /* not lint */
#include <sys/param.h>
@ -324,7 +324,7 @@ pass5()
continue;
if (cg_inosused(cg)[i] & (1 << k))
continue;
pwarn("ALLOCATED INODE %d MARKED FREE",
pwarn("ALLOCATED INODE %d MARKED FREE\n",
c * fs->fs_ipg + i * 8 + k);
}
}
@ -337,7 +337,7 @@ pass5()
continue;
if (cg_blksfree(newcg)[i] & (1 << k))
continue;
pwarn("ALLOCATED FRAG %d MARKED FREE",
pwarn("ALLOCATED FRAG %d MARKED FREE\n",
c * fs->fs_fpg + i * 8 + k);
}
}

View File

@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)pass5.c 8.9 (Berkeley) 4/28/95";
#endif
static const char rcsid[] =
"$Id: pass5.c,v 1.11 1998/06/15 07:07:19 charnier Exp $";
"$Id: pass5.c,v 1.12 1998/06/28 19:23:02 bde Exp $";
#endif /* not lint */
#include <sys/param.h>
@ -324,7 +324,7 @@ pass5()
continue;
if (cg_inosused(cg)[i] & (1 << k))
continue;
pwarn("ALLOCATED INODE %d MARKED FREE",
pwarn("ALLOCATED INODE %d MARKED FREE\n",
c * fs->fs_ipg + i * 8 + k);
}
}
@ -337,7 +337,7 @@ pass5()
continue;
if (cg_blksfree(newcg)[i] & (1 << k))
continue;
pwarn("ALLOCATED FRAG %d MARKED FREE",
pwarn("ALLOCATED FRAG %d MARKED FREE\n",
c * fs->fs_fpg + i * 8 + k);
}
}