Commit 891307b4 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

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.
parent a5ce608f
......@@ -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"
......
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