diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-12-10 16:12:42 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-12-10 16:12:42 +0000 |
commit | 1ff003efd053e77d0c224760d86155081e1ddf52 (patch) | |
tree | ca1fcffbdf23bd37f848be22fa58ff6a0c64e3f0 /sys | |
parent | a7d048f5c6e0711bb71ad987f943b014b3c10681 (diff) |
Fix typo in intersil clock programming.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc/sparc/clock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/sparc/clock.c b/sys/arch/sparc/sparc/clock.c index b20409711c6..5bdae89edc7 100644 --- a/sys/arch/sparc/sparc/clock.c +++ b/sys/arch/sparc/sparc/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.23 2006/06/26 20:21:02 kettenis Exp $ */ +/* $OpenBSD: clock.c,v 1.24 2006/12/10 16:12:41 miod Exp $ */ /* $NetBSD: clock.c,v 1.52 1997/05/24 20:16:05 pk Exp $ */ /* @@ -917,7 +917,7 @@ oclk_set_secs(secs) clock_secs_to_ymdhms(secs, &dt); - idt.dt_hour = dt.dt_sec; + idt.dt_hour = dt.dt_hour; idt.dt_min = dt.dt_min; idt.dt_sec = dt.dt_sec; idt.dt_month = dt.dt_mon; |