Commit 6db8a5e0 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Oops

parent b22e2a9f
...@@ -96,9 +96,11 @@ void bad_msleep( mtime_t delay ) ...@@ -96,9 +96,11 @@ void bad_msleep( mtime_t delay )
} }
# define msleep( d ) \ # define msleep( d ) \
(__builtin_constant_p(d < VLC_HARD_MIN_SLEEP) \ ((__builtin_constant_p(d < VLC_HARD_MIN_SLEEP) \
&& (d < VLC_HARD_MIN_SLEEP)) \
? impossible_msleep(d) \ ? impossible_msleep(d) \
: (__builtin_constant_p(d < VLC_SOFT_MIN_SLEEP) \ : ((__builtin_constant_p(d < VLC_SOFT_MIN_SLEEP) \
&& (d < VLC_SOFT_MIN_SLEEP)) \
? bad_msleep(d) \ ? bad_msleep(d) \
: msleep(d))) : msleep(d)))
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment