From fb20d3f4673b73e6711ee00d63bf4ea38c3002fb Mon Sep 17 00:00:00 2001 From: uwe Date: Sat, 27 Mar 2004 02:01:07 +0000 Subject: [PATCH] Print bootinfo timezone in decimal. -180 is more readable then 0xffffff4c (though may be I'm just getting old :). --- sys/arch/hpc/hpc/kloader.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/hpc/hpc/kloader.c b/sys/arch/hpc/hpc/kloader.c index 3a23d5fc45c7..dd425c6b52b6 100644 --- a/sys/arch/hpc/hpc/kloader.c +++ b/sys/arch/hpc/hpc/kloader.c @@ -1,4 +1,4 @@ -/* $NetBSD: kloader.c,v 1.10 2004/03/25 04:04:28 uwe Exp $ */ +/* $NetBSD: kloader.c,v 1.11 2004/03/27 02:01:07 uwe Exp $ */ /*- * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc. @@ -34,7 +34,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: kloader.c,v 1.10 2004/03/25 04:04:28 uwe Exp $"); +__KERNEL_RCSID(0, "$NetBSD: kloader.c,v 1.11 2004/03/27 02:01:07 uwe Exp $"); #include "debug_kloader.h" @@ -678,7 +678,7 @@ kloader_bootinfo_dump() PRINT(bi_cnuse, %d); PRINT(platid_cpu, 0x%08lx); PRINT(platid_machine, 0x%08lx); - PRINT(timezone, 0x%08lx); + PRINT(timezone, %ld); #undef PRINT printf("[args: %d at %p]\n", kbi->argc, kbi->argv);