From 7d97159f05a12fdc390af36e4f20d7f4f8038592 Mon Sep 17 00:00:00 2001 From: perry Date: Sun, 3 Sep 2006 20:05:37 +0000 Subject: [PATCH] fix a debug printf that was fixed in the i386 version a while ago. part of synchronizing with the i386 version --- sys/arch/amd64/isa/clock.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/amd64/isa/clock.c b/sys/arch/amd64/isa/clock.c index 432d12db2b3f..bf63d99b046f 100644 --- a/sys/arch/amd64/isa/clock.c +++ b/sys/arch/amd64/isa/clock.c @@ -1,4 +1,4 @@ -/* $NetBSD: clock.c,v 1.12 2006/09/03 19:54:21 perry Exp $ */ +/* $NetBSD: clock.c,v 1.13 2006/09/03 20:05:37 perry Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -121,7 +121,7 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include -__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.12 2006/09/03 19:54:21 perry Exp $"); +__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.13 2006/09/03 20:05:37 perry Exp $"); /* #define CLOCKDEBUG */ /* #define CLOCK_PARANOIA */ @@ -802,7 +802,7 @@ inittodr(time_t base) ts.tv_nsec = 0; tc_setclock(&ts); #ifdef DEBUG_CLOCK - printf("readclock: %ld (%ld)\n", time.tv_sec, base); + printf("readclock: %ld (%ld)\n", time_second, base); #endif if (base != 0 && base < time_second - 5*SECYR)