From c16fddc807f56a5a219efa08a48fffbc59f66dae Mon Sep 17 00:00:00 2001 From: uebayasi Date: Thu, 28 Jul 2011 04:06:09 +0000 Subject: [PATCH] Fix DEBUG build. --- sys/arch/sgimips/sgimips/machdep.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/sgimips/sgimips/machdep.c b/sys/arch/sgimips/sgimips/machdep.c index 40f844276ad0..ada4a625fc45 100644 --- a/sys/arch/sgimips/sgimips/machdep.c +++ b/sys/arch/sgimips/sgimips/machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: machdep.c,v 1.135 2011/07/01 18:54:33 dyoung Exp $ */ +/* $NetBSD: machdep.c,v 1.136 2011/07/28 04:06:09 uebayasi Exp $ */ /* * Copyright (c) 2000 Soren S. Jorvang @@ -34,7 +34,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.135 2011/07/01 18:54:33 dyoung Exp $"); +__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.136 2011/07/28 04:06:09 uebayasi Exp $"); #include "opt_ddb.h" #include "opt_kgdb.h" @@ -581,7 +581,7 @@ mach_init(int argc, int32_t argv32[], uintptr_t magic, int32_t bip32) if ((mem = arcbios_GetMemoryDescriptor(mem)) != NULL) { i++; printf("Mem block %d: type %d, " - "base 0x%04lx, size 0x%04lx\n", + "base 0x%04"PRIx32", size 0x%04"PRIx32"\n", i, mem->Type, mem->BasePage, mem->PageCount); } } while (mem != NULL);