From 122dfc5ee25ec4faf040baf5dc834d144bb3a42c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Sat, 8 Dec 2012 11:15:46 +0000 Subject: [PATCH] gallium/os: Fix nano->micro second concersion. copy'n'paste: best friend, worst enemy.. Trivial. --- src/gallium/auxiliary/os/os_time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/os/os_time.h b/src/gallium/auxiliary/os/os_time.h index 517de9b0474..4fab03cc671 100644 --- a/src/gallium/auxiliary/os/os_time.h +++ b/src/gallium/auxiliary/os/os_time.h @@ -62,7 +62,7 @@ os_time_get_nano(void); */ static INLINE int64_t os_time_get(void) { - return os_time_get_nano() * 1000; + return os_time_get_nano() / 1000; } -- 2.30.2