summaryrefslogtreecommitdiffstats
path: root/osdep/timer-linux.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/timer-linux.c')
-rw-r--r--osdep/timer-linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/timer-linux.c b/osdep/timer-linux.c
index 314aa47b27..1378e6ea7e 100644
--- a/osdep/timer-linux.c
+++ b/osdep/timer-linux.c
@@ -30,7 +30,7 @@ void mp_sleep_us(int64_t us)
{
if (us < 0)
return;
-#ifdef HAVE_NANOSLEEP
+#if HAVE_NANOSLEEP
struct timespec ts;
ts.tv_sec = us / 1000000;
ts.tv_nsec = (us % 1000000) * 1000;