diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-01-07 19:37:05 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-01-07 19:37:05 +0100 |
commit | 5afa5f5c0b4239b86128e83825f2dbbb3e65f5f8 (patch) | |
tree | c9c6411dcfe7f3d8ab96543ffc701c33c4ae787d /sys/src | |
parent | 6a651b42ac8cdd639e6258dd24f097132983b4dc (diff) |
kernel: remove todfix overflow iprint() spam
Diffstat (limited to 'sys/src')
-rw-r--r-- | sys/src/9/port/tod.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/src/9/port/tod.c b/sys/src/9/port/tod.c index b88f721af..ea9d79399 100644 --- a/sys/src/9/port/tod.c +++ b/sys/src/9/port/tod.c @@ -207,7 +207,6 @@ todfix(void) if(diff > tod.hz){ /* convert to epoch */ mul64fract(&x, diff, tod.multiplier); -if(x > 30000000000ULL) iprint("todfix %llud\n", x); x += tod.off; /* protect against overflows */ |