Module Name: src
Committed By: christos
Date: Sun Jul 26 21:28:33 UTC 2020
Modified Files:
src/sys/kern: vfs_subr.c
Log Message:
use the right printing function
To generate a diff of this commit:
cvs rdiff -u -r1.488 -r1.489 src/sys/kern/vfs_subr.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/kern/vfs_subr.c
diff -u src/sys/kern/vfs_subr.c:1.488 src/sys/kern/vfs_subr.c:1.489
--- src/sys/kern/vfs_subr.c:1.488 Tue May 26 14:38:37 2020
+++ src/sys/kern/vfs_subr.c Sun Jul 26 17:28:33 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: vfs_subr.c,v 1.488 2020/05/26 18:38:37 ad Exp $ */
+/* $NetBSD: vfs_subr.c,v 1.489 2020/07/26 21:28:33 christos Exp $ */
/*-
* Copyright (c) 1997, 1998, 2004, 2005, 2007, 2008, 2019, 2020
@@ -69,7 +69,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_subr.c,v 1.488 2020/05/26 18:38:37 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_subr.c,v 1.489 2020/07/26 21:28:33 christos Exp $");
#ifdef _KERNEL_OPT
#include "opt_ddb.h"
@@ -1543,7 +1543,7 @@ vfs_vnode_print(struct vnode *vp, int fu
uvm_object_printit(&vp->v_uobj, full, pr);
(*pr)("\n");
- vprint_common(vp, "", printf);
+ vprint_common(vp, "", pr);
if (full) {
struct buf *bp;