diff options
author | 2001-06-10 20:01:42 +0000 | |
---|---|---|
committer | 2001-06-10 20:01:42 +0000 | |
commit | 29d29493b6657cfb8b731afe06ea4ed0a654aa1d (patch) | |
tree | 0060553373eecdffe65af448e6a4ac50764a0384 | |
parent | inconsistantly redundant returns (diff) | |
download | wireguard-openbsd-29d29493b6657cfb8b731afe06ea4ed0a654aa1d.tar.xz wireguard-openbsd-29d29493b6657cfb8b731afe06ea4ed0a654aa1d.zip |
Do not print time in seconds since epoc on boot,
debugging was not removed before commit.
-rw-r--r-- | sys/arch/powerpc/powerpc/clock.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/powerpc/powerpc/clock.c b/sys/arch/powerpc/powerpc/clock.c index 8d7f665bf2d..4650c6e5937 100644 --- a/sys/arch/powerpc/powerpc/clock.c +++ b/sys/arch/powerpc/powerpc/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.12 2001/06/09 04:51:16 drahn Exp $ */ +/* $OpenBSD: clock.c,v 1.13 2001/06/10 20:01:42 drahn Exp $ */ /* $NetBSD: clock.c,v 1.1 1996/09/30 16:34:40 ws Exp $ */ /* @@ -112,7 +112,6 @@ inittodr(base) u_long cursec; (*time_read)(&cursec); time.tv_sec = cursec; - printf ("time is %d seconds\n", cursec); } else { /* force failure */ time.tv_sec = 0; |