As is evidenced by several of our 32-bit MIPS ports, it's wrong to

print vsize_t with PRIx64 -- instead use our own PRIxVSIZE macro.
This commit is contained in:
he 2014-10-07 11:37:06 +00:00
parent 8bc1f582cb
commit d01de6e07a

View File

@ -1,4 +1,4 @@
/* $NetBSD: puffs_vnops.c,v 1.192 2014/10/06 14:26:44 he Exp $ */
/* $NetBSD: puffs_vnops.c,v 1.193 2014/10/07 11:37:06 he Exp $ */
/*
* Copyright (c) 2005, 2006, 2007 Antti Kantee. All Rights Reserved.
@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: puffs_vnops.c,v 1.192 2014/10/06 14:26:44 he Exp $");
__KERNEL_RCSID(0, "$NetBSD: puffs_vnops.c,v 1.193 2014/10/07 11:37:06 he Exp $");
#include <sys/param.h>
#include <sys/buf.h>
@ -1160,8 +1160,8 @@ zerofill_lastpage(struct vnode *vp, voff_t off)
error = ubc_uiomove(&vp->v_uobj, &uio, len,
UVM_ADV_SEQUENTIAL, UBC_WRITE|UBC_UNMAP_FLAG(vp));
if (error) {
DPRINTF(("zero-fill 0x%lx@0x%" PRIx64 " failed: error = %d\n",
len, off, error));
DPRINTF(("zero-fill 0x%lx@0x%" PRIxVSIZE
" failed: error = %d\n", len, off, error));
}
return;