diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-12 15:00:04 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-12 15:00:04 +0000 |
commit | 18f770162b9d079f2d278a719d7684dd19d86202 (patch) | |
tree | 5c77ea1c50f73765a3378392b4d311c8543329f0 /libavcodec/mem.c | |
parent | 92ddb69283d36a3b930fe94ab9f1b4503939b5d1 (diff) | |
download | ffmpeg-18f770162b9d079f2d278a719d7684dd19d86202.tar.gz |
* fixing some minor const warnings
Originally committed as revision 1205 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mem.c')
-rw-r--r-- | libavcodec/mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mem.c b/libavcodec/mem.c index 5799c07744..a9b5e0afa8 100644 --- a/libavcodec/mem.c +++ b/libavcodec/mem.c @@ -26,7 +26,7 @@ linker will do it automatically */ /* memory alloc */ -void *av_malloc(int size) +void *av_malloc(unsigned int size) { void *ptr; #if defined (HAVE_MEMALIGN) |