Remove unnecessary parentheses from return calls.
Originally committed as revision 13069 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -61,7 +61,7 @@ int av_base64_decode(uint8_t * out, const char *in, int out_length)
|
||||
}
|
||||
}
|
||||
|
||||
return (dst - out);
|
||||
return dst - out;
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
|
Reference in New Issue
Block a user