diff --git a/sys/arch/ia64/stand/ia64/efi/main.c b/sys/arch/ia64/stand/ia64/efi/main.c index 772779c501b7..17998e82ca8c 100644 --- a/sys/arch/ia64/stand/ia64/efi/main.c +++ b/sys/arch/ia64/stand/ia64/efi/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.1 2006/04/07 14:21:32 cherry Exp $ */ +/* $NetBSD: main.c,v 1.2 2006/09/21 09:59:45 kochi Exp $ */ /*- * Copyright (c) 1998 Michael Smith @@ -127,7 +127,7 @@ main(int argc, CHAR16 *argv[]) /* Get our loaded image protocol interface structure. */ BS->HandleProtocol(IH, &imgid, (VOID**)&img); - printf("Image base: 0x%x\n", (u_long)img->ImageBase); + printf("Image base: 0lx%x\n", (u_long)img->ImageBase); printf("\n"); printf("%s, Revision %s\n", bootprog_name, bootprog_rev);