From 5513da65b24a3ce77b1709acea841475115f3a7a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 17 Jun 2018 16:32:54 +0200 Subject: Cleanup: trailing space for BLI --- source/blender/blenlib/intern/time.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/blenlib/intern/time.c') diff --git a/source/blender/blenlib/intern/time.c b/source/blender/blenlib/intern/time.c index 3cf3221bd08..a2665f96b29 100644 --- a/source/blender/blenlib/intern/time.c +++ b/source/blender/blenlib/intern/time.c @@ -39,7 +39,7 @@ #define WIN32_LEAN_AND_MEAN #include -double PIL_check_seconds_timer(void) +double PIL_check_seconds_timer(void) { static int hasperfcounter = -1; /* (-1 == unknown) */ static double perffreq; @@ -89,7 +89,7 @@ void PIL_sleep_ms(int ms) #include #include -double PIL_check_seconds_timer(void) +double PIL_check_seconds_timer(void) { struct timeval tv; struct timezone tz; @@ -115,7 +115,7 @@ void PIL_sleep_ms(int ms) sleep(ms / 1000); ms = (ms % 1000); } - + usleep(ms * 1000); } -- cgit v1.2.3