Commit e79d3ac6 authored by Ulrich Sibiller's avatar Ulrich Sibiller

render/filter.c: add missing return value

Fixes filter.c: In function ‘SetPicturePictFilter’: filter.c:363:5: warning: ‘return’ with no value, in function returning non-void [enabled by default] return ; ^
parent a9d4a454
......@@ -360,5 +360,5 @@ SetPicturePictFilter (PicturePtr pPicture, PictFilterPtr pFilter,
}
pPicture->serialNumber |= GC_CHANGE_SERIAL_BIT;
return ;
return Success;
}
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