Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mips/mips Fix printf format string for the EXTENT_D...



details:   https://anonhg.NetBSD.org/src/rev/81005a432413
branches:  trunk
changeset: 535453:81005a432413
user:      simonb <simonb%NetBSD.org@localhost>
date:      Mon Aug 19 12:03:48 2002 +0000

description:
Fix printf format string for the EXTENT_DEBUG case.

diffstat:

 sys/arch/mips/mips/bus_space_alignstride_chipdep.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 6ae8e008ad30 -r 81005a432413 sys/arch/mips/mips/bus_space_alignstride_chipdep.c
--- a/sys/arch/mips/mips/bus_space_alignstride_chipdep.c        Mon Aug 19 12:03:04 2002 +0000
+++ b/sys/arch/mips/mips/bus_space_alignstride_chipdep.c        Mon Aug 19 12:03:48 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus_space_alignstride_chipdep.c,v 1.3 2002/06/05 06:27:10 simonb Exp $ */
+/* $NetBSD: bus_space_alignstride_chipdep.c,v 1.4 2002/08/19 12:03:48 simonb Exp $ */
 
 /*-
  * Copyright (c) 1998, 2000, 2001 The NetBSD Foundation, Inc.
@@ -331,7 +331,7 @@
        }
 
 #ifdef EXTENT_DEBUG
-       printf("xxx: freeing from 0x%lx to 0x%lx\n", CHIP_W1_BUS_START(v),
+       printf("xxx: freeing from 0x%x to 0x%x\n", CHIP_W1_BUS_START(v),
            CHIP_W1_BUS_END(v));
 #endif
        extent_free(ex, CHIP_W1_BUS_START(v),



Home | Main Index | Thread Index | Old Index