Skip to content

Commit

Permalink
Merge pull request dyne#68 from rrrapha/spillsupress
Browse files Browse the repository at this point in the history
spillsupress: silence -Wunused-value warnings, no functional change
  • Loading branch information
jaromil authored Dec 26, 2018
2 parents dbc9441 + 47a2f46 commit ac78c7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/filter/spillsupress/spillsupress.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ void green_limited_by_blue(unsigned int len, const uint32_t* inframe, uint32_t*
{
*dst++ = *src++;
g = *src++;
*dst++;
dst++;
b = *src++;
*dst++;
dst++;
*dst++ = *src++;

if( g > b )
Expand Down Expand Up @@ -68,9 +68,9 @@ void blue_limited_by_green(unsigned int len, const uint32_t* inframe, uint32_t*
{
*dst++ = *src++;
g = *src++;
*dst++;
dst++;
b = *src++;
*dst++;
dst++;
*dst++ = *src++;

if( b > g )
Expand Down

0 comments on commit ac78c7f

Please sign in to comment.