Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/arm32 Fix a format string to actually print the...



details:   https://anonhg.NetBSD.org/src/rev/c4a73469ca7a
branches:  trunk
changeset: 328878:c4a73469ca7a
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue Apr 22 12:13:09 2014 +0000

description:
Fix a format string to actually print the prot

diffstat:

 sys/arch/arm/arm32/pmap.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 452992ac2e20 -r c4a73469ca7a sys/arch/arm/arm32/pmap.c
--- a/sys/arch/arm/arm32/pmap.c Tue Apr 22 06:02:06 2014 +0000
+++ b/sys/arch/arm/arm32/pmap.c Tue Apr 22 12:13:09 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.288 2014/04/20 22:31:34 matt Exp $  */
+/*     $NetBSD: pmap.c,v 1.289 2014/04/22 12:13:09 skrll Exp $ */
 
 /*
  * Copyright 2003 Wasabi Systems, Inc.
@@ -216,7 +216,7 @@
 #include <arm/locore.h>
 //#include <arm/arm32/katelib.h>
 
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.288 2014/04/20 22:31:34 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.289 2014/04/22 12:13:09 skrll Exp $");
 
 //#define PMAP_DEBUG
 #ifdef PMAP_DEBUG
@@ -3055,7 +3055,7 @@
 
        UVMHIST_FUNC(__func__); UVMHIST_CALLED(maphist);
 
-       UVMHIST_LOG(maphist, " (pm %p va %#x pa %#x prot #x",
+       UVMHIST_LOG(maphist, " (pm %p va %#x pa %#x prot %#x",
            pm, va, pa, prot);
        UVMHIST_LOG(maphist, "  flag %#x", flags, 0, 0, 0);
 



Home | Main Index | Thread Index | Old Index