gallium/os: minor whitespace fixes in os_time.h
authorBrian Paul <brianp@vmware.com>
Mon, 6 Jul 2015 21:28:59 +0000 (15:28 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 7 Jul 2015 18:36:48 +0000 (12:36 -0600)
Trivial.

src/gallium/auxiliary/os/os_time.h

index 21979a72ac5ae7d400b224a623859de2d8cb045b..e786ee1885b3a566beefa791b26c560466c597fa 100644 (file)
@@ -45,7 +45,7 @@
 #include "pipe/p_compiler.h"
 
 
-#ifdef __cplusplus
+#ifdef __cplusplus
 extern "C" {
 #endif
 
@@ -61,8 +61,9 @@ os_time_get_nano(void);
  * Get the current time in microseconds from an unknown base.
  */
 static INLINE int64_t
-os_time_get(void) {
-    return os_time_get_nano() / 1000;
+os_time_get(void)
+{
+   return os_time_get_nano() / 1000;
 }
 
 
@@ -87,7 +88,7 @@ os_time_timeout(int64_t start,
                 int64_t end,
                 int64_t curr)
 {
-   if(start <= end)
+   if (start <= end)
       return !(start <= curr && curr < end);
    else
       return !((start <= curr) || (curr < end));
@@ -131,7 +132,7 @@ os_wait_until_zero(volatile int *var, uint64_t timeout);
 bool
 os_wait_until_zero_abs_timeout(volatile int *var, int64_t timeout);
 
-#ifdef __cplusplus
+#ifdef __cplusplus
 }
 #endif