summaryrefslogtreecommitdiff
path: root/sys/kern/kern_tc.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1998-03-31 10:47:01 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1998-03-31 10:47:01 +0000
commit460608e768be4e16c989cdf82143cf944a3e6a76 (patch)
tree75dc7ace31cd8aa81e37607969ca26680e5d6e8b /sys/kern/kern_tc.c
parent75da0aa2980182101859b22b99dd79ae0268ba1b (diff)
Notes
Diffstat (limited to 'sys/kern/kern_tc.c')
-rw-r--r--sys/kern/kern_tc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_tc.c b/sys/kern/kern_tc.c
index 4b34e76d2407..e3fb79847465 100644
--- a/sys/kern/kern_tc.c
+++ b/sys/kern/kern_tc.c
@@ -39,7 +39,7 @@ static volatile int print_tci = 1;
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
- * $Id: kern_clock.c,v 1.60 1998/03/30 09:50:00 phk Exp $
+ * $Id: kern_clock.c,v 1.61 1998/03/31 10:44:56 phk Exp $
*/
#include <sys/param.h>
@@ -523,7 +523,7 @@ getnanotime(struct timespec *tsp)
tc = timecounter;
tsp->tv_sec = tc->offset_sec;
- tsp->tv_nsec = tc->offset_nano;
+ tsp->tv_nsec = tc->offset_nano >> 32;
}
void