Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/fs/puffs Use PRIx64 for printing offsets
details: https://anonhg.NetBSD.org/src/rev/89ab26955fd3
branches: trunk
changeset: 332710:89ab26955fd3
user: justin <justin%NetBSD.org@localhost>
date: Sun Oct 05 09:28:24 2014 +0000
description:
Use PRIx64 for printing offsets
diffstat:
sys/fs/puffs/puffs_vnops.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r fc8bdea75d99 -r 89ab26955fd3 sys/fs/puffs/puffs_vnops.c
--- a/sys/fs/puffs/puffs_vnops.c Sun Oct 05 07:53:22 2014 +0000
+++ b/sys/fs/puffs/puffs_vnops.c Sun Oct 05 09:28:24 2014 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: puffs_vnops.c,v 1.188 2014/10/05 07:53:22 manu Exp $ */
+/* $NetBSD: puffs_vnops.c,v 1.189 2014/10/05 09:28:24 justin 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.188 2014/10/05 07:53:22 manu Exp $");
+__KERNEL_RCSID(0, "$NetBSD: puffs_vnops.c,v 1.189 2014/10/05 09:28:24 justin Exp $");
#include <sys/param.h>
#include <sys/buf.h>
@@ -1157,7 +1157,7 @@
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%llx => %d\n", len, off, error));
+ DPRINTF(("zero-fill 0x%lx@0x%" PRIx64 " => %d\n", len, off, error));
return;
}
Home |
Main Index |
Thread Index |
Old Index