Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/sys/arch/hp300/dev Pull up rev 1.43 from scottr:



details:   https://anonhg.NetBSD.org/src/rev/7211d9e39bb4
branches:  netbsd-1-5
changeset: 489458:7211d9e39bb4
user:      scottr <scottr%NetBSD.org@localhost>
date:      Thu Sep 14 06:38:17 2000 +0000

description:
Pull up rev 1.43 from scottr:
  Repair format type mismatch in DEBUG code.  From Steve Peurifoy
  via PR #10603.

diffstat:

 sys/arch/hp300/dev/sd.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 2b9b3a4cc54d -r 7211d9e39bb4 sys/arch/hp300/dev/sd.c
--- a/sys/arch/hp300/dev/sd.c   Thu Sep 14 06:35:16 2000 +0000
+++ b/sys/arch/hp300/dev/sd.c   Thu Sep 14 06:38:17 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sd.c,v 1.42 2000/05/27 04:52:28 thorpej Exp $  */
+/*     $NetBSD: sd.c,v 1.42.4.1 2000/09/14 06:38:17 scottr Exp $       */
 
 /*-
  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -961,7 +961,7 @@
                printf("%s: sdstart: %s adr %p blk %ld len %ld ecnt %d\n",
                       sc->sc_dev.dv_xname,
                       bp->b_flags & B_READ? "read" : "write",
-                      bp->b_data, bp->b_rawblkno, bp->b_bcount,
+                      bp->b_data, (long)bp->b_rawblkno, bp->b_bcount,
                       sc->sc_errcnt);
 #endif
        bp->b_flags |= B_ERROR;



Home | Main Index | Thread Index | Old Index