diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2008-01-17 11:07:27 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-01-17 11:07:27 +0000 |
commit | 8916b4b55b16fe44795aba66ca843c2b5b758fc4 (patch) | |
tree | 6d7a3b8cdb04693eb9ffc9cbef4e8a091010445c /libswscale/swscale-example.c | |
parent | 30c48a0af446a6c2b51d2c7ecfcfef0600a95f54 (diff) | |
download | ffmpeg-8916b4b55b16fe44795aba66ca843c2b5b758fc4.tar.gz |
Remove some useless parentheses.
Originally committed as revision 25779 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale-example.c')
-rw-r--r-- | libswscale/swscale-example.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale-example.c b/libswscale/swscale-example.c index adfe7bccbe..124128b377 100644 --- a/libswscale/swscale-example.c +++ b/libswscale/swscale-example.c @@ -76,7 +76,7 @@ static int doTest(uint8_t *ref[3], int refStride[3], int w, int h, int srcFormat src[i]= (uint8_t*) malloc(srcStride[i]*srcH); dst[i]= (uint8_t*) malloc(dstStride[i]*dstH); out[i]= (uint8_t*) malloc(refStride[i]*h); - if ((src[i] == NULL) || (dst[i] == NULL) || (out[i] == NULL)) { + if (src[i] == NULL || dst[i] == NULL || out[i] == NULL) { perror("Malloc"); res = -1; |