diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-12-31 16:30:59 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-01-02 16:41:24 +0100 |
commit | 44b0edda3f4f8006c16e1b124199cafaf6363f3d (patch) | |
tree | 57684e719597a73517666eba9504ddc78f12d954 /libswscale/colorspace-test.c | |
parent | 3a1867deac3112b925648b07737be26f4b13f33a (diff) | |
download | ffmpeg-44b0edda3f4f8006c16e1b124199cafaf6363f3d.tar.gz |
Drop some pointless void* return value casts from av_malloc() invocations.
Diffstat (limited to 'libswscale/colorspace-test.c')
-rw-r--r-- | libswscale/colorspace-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/colorspace-test.c b/libswscale/colorspace-test.c index 07c1cbd803..ac3bb71f31 100644 --- a/libswscale/colorspace-test.c +++ b/libswscale/colorspace-test.c @@ -36,8 +36,8 @@ int main(int argc, char **argv) { int i, funcNum; - uint8_t *srcBuffer= (uint8_t*)av_malloc(SIZE); - uint8_t *dstBuffer= (uint8_t*)av_malloc(SIZE); + uint8_t *srcBuffer = av_malloc(SIZE); + uint8_t *dstBuffer = av_malloc(SIZE); int failedNum=0; int passedNum=0; |