From 20208c3bf06a215068c2a7cf3d2aa91c1a6f5ef2 Mon Sep 17 00:00:00 2001 From: Andriy Gapon Date: Mon, 16 May 2011 15:36:11 +0000 Subject: [PATCH] Revert accidentally committed local change in r221990 Pointyhat to: avg --- sys/cddl/compat/opensolaris/sys/time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/cddl/compat/opensolaris/sys/time.h b/sys/cddl/compat/opensolaris/sys/time.h index cd5e69579bf..05db50e57ef 100644 --- a/sys/cddl/compat/opensolaris/sys/time.h +++ b/sys/cddl/compat/opensolaris/sys/time.h @@ -53,7 +53,7 @@ gethrtime(void) { struct timespec ts; hrtime_t nsec; - nanouptime(&ts); + getnanouptime(&ts); nsec = (hrtime_t)ts.tv_sec * NANOSEC + ts.tv_nsec; return (nsec); }