From 891307b4d194d4de628da302224c3a97b6f2c840 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Thu, 19 Jun 2014 18:45:13 +0200 Subject: s86/scale: Do not return the result of a (void) function from a void function. Fixes compilation with Sun C 5.12. Reported by Bradley Mitchell in ticket #3649. --- libswscale/x86/swscale.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libswscale/x86/swscale.c') diff --git a/libswscale/x86/swscale.c b/libswscale/x86/swscale.c index d85380065b..98cded2ec4 100644 --- a/libswscale/x86/swscale.c +++ b/libswscale/x86/swscale.c @@ -202,7 +202,8 @@ static void yuv2yuvX_sse3(const int16_t *filter, int filterSize, const uint8_t *dither, int offset) { if(((int)dest) & 15){ - return yuv2yuvX_mmxext(filter, filterSize, src, dest, dstW, dither, offset); + yuv2yuvX_mmxext(filter, filterSize, src, dest, dstW, dither, offset); + return; } if (offset) { __asm__ volatile("movq (%0), %%xmm3\n\t" -- cgit v1.2.3