Don't include a "\n" in KTR output, it confuses automatic parsing.

This commit is contained in:
Robert Watson 2004-07-23 20:12:56 +00:00
parent 18f480f8f6
commit ff381670df
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=132587

View file

@ -141,7 +141,7 @@ acquire(struct lock **lkpp, int extflags, int wanted) {
int s, error;
CTR3(KTR_LOCK,
"acquire(): lkp == %p, extflags == 0x%x, wanted == 0x%x\n",
"acquire(): lkp == %p, extflags == 0x%x, wanted == 0x%x",
lkp, extflags, wanted);
if ((extflags & LK_NOWAIT) && (lkp->lk_flags & wanted)) {