From 223a85985393ab6e9a71dab4a8877ed4ac15d82c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 7 May 2015 01:07:30 +0200 Subject: swresample/dither_template: Do not define macro functions to nothing This avoids potential warnings Signed-off-by: Michael Niedermayer --- libswresample/dither_template.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libswresample/dither_template.c') diff --git a/libswresample/dither_template.c b/libswresample/dither_template.c index 4af7312779..1e35dfb040 100644 --- a/libswresample/dither_template.c +++ b/libswresample/dither_template.c @@ -2,12 +2,12 @@ #if defined(TEMPLATE_DITHER_DBL) # define RENAME(N) N ## _double # define DELEM double -# define CLIP(v) +# define CLIP(v) while(0) #elif defined(TEMPLATE_DITHER_FLT) # define RENAME(N) N ## _float # define DELEM float -# define CLIP(v) +# define CLIP(v) while(0) #elif defined(TEMPLATE_DITHER_S32) # define RENAME(N) N ## _int32 -- cgit v1.2.3