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.
This commit is contained in:
Carl Eugen Hoyos 2014-06-19 18:45:13 +02:00
parent a5ce608fc7
commit 891307b4d1
1 changed files with 2 additions and 1 deletions

View File

@ -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"