diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-07-15 00:45:59 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-07-15 02:01:22 +0200 |
commit | 66f6bab7ad2034672f3c6fe9602b59fe291d2d60 (patch) | |
tree | 7008f9c6729ac08bab8ed6cbe02baa52333fcbfd | |
parent | bee6d2fd76015b1ee0d73c5f3500b0a7d0109199 (diff) | |
download | ffmpeg-66f6bab7ad2034672f3c6fe9602b59fe291d2d60.tar.gz |
mem.h: switch doxygen parameter order to match function prototype
-rw-r--r-- | libavutil/mem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/mem.h b/libavutil/mem.h index 5dea492021..e14e8d038c 100644 --- a/libavutil/mem.h +++ b/libavutil/mem.h @@ -76,10 +76,10 @@ void *av_malloc(size_t size) av_malloc_attrib av_alloc_size(1); * Allocate or reallocate a block of memory. * If ptr is NULL and size > 0, allocate a new block. If * size is zero, free the memory block pointed to by ptr. - * @param size Size in bytes for the memory block to be allocated or - * reallocated. * @param ptr Pointer to a memory block already allocated with * av_malloc(z)() or av_realloc() or NULL. + * @param size Size in bytes for the memory block to be allocated or + * reallocated. * @return Pointer to a newly reallocated block or NULL if the block * cannot be reallocated or the function is used to free the memory block. * @see av_fast_realloc() |