1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-30 00:30:24 +02:00

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
This commit is contained in:
Carl Eugen Hoyos 2018-12-17 20:33:24 +01:00
parent ea30ac1e40
commit a07470ba37

View File

@ -52,7 +52,7 @@
#endif
#ifndef emms_c
# define emms_c() while(0)
# define emms_c() do {} while(0)
#endif
#ifndef attribute_align_arg