summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-21 15:18:52 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-21 15:18:52 +0000
commitbe7110cdedbc27a24be9440177c6466813937578 (patch)
tree79be81786a2510f4ddc059e24ae1c33d02cddcd9
parenta29b1700ee070e3d383ea58048f06d1916738f83 (diff)
Cosmetics: if( -> if (.
Originally committed as revision 24859 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcore/imgutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcore/imgutils.c b/libavcore/imgutils.c
index 686769eefb..ebaeff16c5 100644
--- a/libavcore/imgutils.c
+++ b/libavcore/imgutils.c
@@ -114,7 +114,7 @@ int av_check_image_size(unsigned int w, unsigned int h, int log_offset, void *lo
{
ImgUtils imgutils = { &imgutils_class, log_offset, log_ctx };
- if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/8)
+ if ((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/8)
return 0;
av_log(&imgutils, AV_LOG_ERROR, "Picture size %ux%u is invalid\n", w, h);