Commit a07470ba authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavu/internal: Replace an empty loop with "do {}".

Silences a clang warning when not compiling for x86:
libswscale/utils.c:345:13: warning: while loop has empty body

Suggested-by: Nicolas George
parent ea30ac1e
......@@ -52,7 +52,7 @@
#endif
#ifndef emms_c
# define emms_c() while(0)
# define emms_c() do {} while(0)
#endif
#ifndef attribute_align_arg
......
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