summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2008-03-23 12:32:45 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2008-03-23 12:32:45 +0000
commit3b3e5406222e96889e96bda9eb39934213bb3e0d (patch)
treeee0e0ec55f3f6fbb03e7477e4a2ddf16a668642c /sys
parente74a47347d1700b5f0ea6ef66ea0e2376c877294 (diff)
Wrong printf construct.
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/vfs_subr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index a3894346e16..0f7cbce95ff 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_subr.c,v 1.162 2008/03/16 19:42:57 otto Exp $ */
+/* $OpenBSD: vfs_subr.c,v 1.163 2008/03/23 12:32:44 miod Exp $ */
/* $NetBSD: vfs_subr.c,v 1.53 1996/04/22 01:39:13 christos Exp $ */
/*
@@ -2272,7 +2272,7 @@ vfs_mount_print(struct mount *mp, int full, int (*pr)(const char *, ...))
(*pr)(" %p,\n\t", vp);
else
(*pr)(" %p,", vp);
- (*pr)("\n", vp);
+ (*pr)("\n");
}
}
#endif /* DDB */