fix a debug printf that was fixed in the i386 version a while ago.

part of synchronizing with the i386 version
This commit is contained in:
perry 2006-09-03 20:05:37 +00:00
parent dab650c1ac
commit 7d97159f05
1 changed files with 3 additions and 3 deletions

View File

@ -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 <sys/cdefs.h>
__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)