From a0ace6b4615c7ed7cf0bbeb87521134233b8e934 Mon Sep 17 00:00:00 2001 From: reinoud Date: Tue, 23 Aug 2011 13:37:32 +0000 Subject: [PATCH] OOps... there is no aprintf_debug() --- sys/arch/usermode/usermode/pmap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/usermode/usermode/pmap.c b/sys/arch/usermode/usermode/pmap.c index 519b7ca0d88e..b2d47061794a 100644 --- a/sys/arch/usermode/usermode/pmap.c +++ b/sys/arch/usermode/usermode/pmap.c @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.c,v 1.19 2011/08/23 13:35:57 reinoud Exp $ */ +/* $NetBSD: pmap.c,v 1.20 2011/08/23 13:37:32 reinoud Exp $ */ /*- * Copyright (c) 2011 Reinoud Zandijk @@ -27,7 +27,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.19 2011/08/23 13:35:57 reinoud Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.20 2011/08/23 13:37:32 reinoud Exp $"); #include "opt_memsize.h" #include "opt_kmempages.h" @@ -671,7 +671,7 @@ pmap_zero_page(paddr_t pa) char blob[PAGE_SIZE]; int num; - aprintf_debug("pmap_zero_page: pa %p\n", (void *) pa); + aprint_debug("pmap_zero_page: pa %p\n", (void *) pa); memset(blob, 0, PAGE_SIZE); num = thunk_pwrite(mem_fh, blob, PAGE_SIZE, pa*PAGE_SIZE);