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/kbus | |
parent | 2b75b6a5dec6410bbe8cbe1972e48e2a7547cd40 (diff) |
Check usec for >= 1000000, not just > ; as msaitoh@NetBSD.org
Diffstat (limited to 'sys/arch/kbus')
-rw-r--r-- | sys/arch/kbus/kbus/machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/kbus/kbus/machdep.c b/sys/arch/kbus/kbus/machdep.c index 390f9e83f79..5b1eeae34fa 100644 --- a/sys/arch/kbus/kbus/machdep.c +++ b/sys/arch/kbus/kbus/machdep.c @@ -573,7 +573,7 @@ microtime(tvp) *tvp = time; tvp->tv_usec += tick; - while (tvp->tv_usec > 1000000) { + while (tvp->tv_usec >= 1000000) { tvp->tv_sec++; tvp->tv_usec -= 1000000; } |