diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 2000-04-11 02:44:34 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 2000-04-11 02:44:34 +0000 |
commit | 0889e17ff20ca0cbfe9a0f19088dbc9a087e5745 (patch) | |
tree | 68f16656cc1ba4a010079658398a00f043c9a7be /sys/arch/atari | |
parent | 2b75b6a5dec6410bbe8cbe1972e48e2a7547cd40 (diff) |
Check usec for >= 1000000, not just > ; as msaitoh@NetBSD.org
Diffstat (limited to 'sys/arch/atari')
-rw-r--r-- | sys/arch/atari/atari/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/atari/atari/machdep.c b/sys/arch/atari/atari/machdep.c index fce889d2bf7..16a72e1638d 100644 --- a/sys/arch/atari/atari/machdep.c +++ b/sys/arch/atari/atari/machdep.c @@ -1016,13 +1016,13 @@ void microtime(tvp) *tvp = time; tvp->tv_usec += clkread(); - while (tvp->tv_usec > 1000000) { + while (tvp->tv_usec >= 1000000) { tvp->tv_sec++; tvp->tv_usec -= 1000000; } if (tvp->tv_sec == lasttime.tv_sec && tvp->tv_usec <= lasttime.tv_usec && - (tvp->tv_usec = lasttime.tv_usec + 1) > 1000000) { + (tvp->tv_usec = lasttime.tv_usec + 1) >= 1000000) { tvp->tv_sec++; tvp->tv_usec -= 1000000; } |