Commit c901f6ab authored by Stefano Sabatini's avatar Stefano Sabatini

Cosmetics: remove useless ().

Originally committed as revision 24860 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent be7110cd
...@@ -785,7 +785,7 @@ void ff_img_copy_plane(uint8_t *dst, int dst_wrap, ...@@ -785,7 +785,7 @@ void ff_img_copy_plane(uint8_t *dst, int dst_wrap,
const uint8_t *src, int src_wrap, const uint8_t *src, int src_wrap,
int width, int height) int width, int height)
{ {
if((!dst) || (!src)) if (!dst || !src)
return; return;
for(;height > 0; height--) { for(;height > 0; height--) {
memcpy(dst, src, width); memcpy(dst, src, width);
......
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