Drop some pointless void* return value casts from av_malloc() invocations.

This commit is contained in:
Diego Biurrun
2012-01-02 16:41:24 +01:00
parent 3a1867deac
commit 44b0edda3f
4 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -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;