diff --git a/sys/arch/arm/arm32/fault.c b/sys/arch/arm/arm32/fault.c index 88a13cd1586c..c2ac4aee7969 100644 --- a/sys/arch/arm/arm32/fault.c +++ b/sys/arch/arm/arm32/fault.c @@ -1,4 +1,4 @@ -/* $NetBSD: fault.c,v 1.18 2002/04/12 18:50:31 thorpej Exp $ */ +/* $NetBSD: fault.c,v 1.19 2002/05/25 07:58:35 ichiro Exp $ */ /* * Copyright (c) 1994-1997 Mark Brinicombe. @@ -626,7 +626,7 @@ prefetch_abort_handler(frame) /* Ok validate the address, can only execute in USER space */ if (fault_pc < VM_MIN_ADDRESS || fault_pc >= VM_MAXUSER_ADDRESS) { #ifdef DEBUG - printf("prefetch: pc (%08x) not in user process space\n", + printf("prefetch: pc (%08lx) not in user process space\n", fault_pc); #endif trapsignal(p, SIGSEGV, fault_pc);