Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/acorn32/mainbus Fix format string mismatch.
details: https://anonhg.NetBSD.org/src/rev/0e61e30ffa10
branches: trunk
changeset: 546042:0e61e30ffa10
user: bjh21 <bjh21%NetBSD.org@localhost>
date: Sat Apr 19 19:55:07 2003 +0000
description:
Fix format string mismatch.
diffstat:
sys/arch/acorn32/mainbus/fd.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diffs (19 lines):
diff -r 88a6dc3d9316 -r 0e61e30ffa10 sys/arch/acorn32/mainbus/fd.c
--- a/sys/arch/acorn32/mainbus/fd.c Sat Apr 19 19:38:21 2003 +0000
+++ b/sys/arch/acorn32/mainbus/fd.c Sat Apr 19 19:55:07 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fd.c,v 1.14 2003/01/31 02:05:41 thorpej Exp $ */
+/* $NetBSD: fd.c,v 1.15 2003/04/19 19:55:07 bjh21 Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -1536,7 +1536,8 @@
bp->b_data = (caddr_t)finfo;
#ifdef DEBUG
- printf("fdformat: blkno %x count %lx\n", bp->b_blkno, bp->b_bcount);
+ printf("fdformat: blkno %llx count %lx\n",
+ (unsigned long long)bp->b_blkno, bp->b_bcount);
#endif
/* now do the format */
Home |
Main Index |
Thread Index |
Old Index