diff options
Diffstat (limited to 'src/libffmpeg/libavcodec/utils.c')
-rw-r--r-- | src/libffmpeg/libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libffmpeg/libavcodec/utils.c b/src/libffmpeg/libavcodec/utils.c index 77e4e750d..6797508e1 100644 --- a/src/libffmpeg/libavcodec/utils.c +++ b/src/libffmpeg/libavcodec/utils.c @@ -20,7 +20,7 @@ #include "dsputil.h" #include "mpegvideo.h" -void *av_mallocz(int size) +void *av_mallocz(unsigned int size) { void *ptr; ptr = av_malloc(size); |