[FFmpeg-cvslog] mem.h: switch doxygen parameter order to match function prototype

Diego Biurrun git at videolan.org
Fri Jul 15 17:58:59 CEST 2011


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Fri Jul 15 00:45:59 2011 +0200| [66f6bab7ad2034672f3c6fe9602b59fe291d2d60] | committer: Diego Biurrun

mem.h: switch doxygen parameter order to match function prototype

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=66f6bab7ad2034672f3c6fe9602b59fe291d2d60
---

 libavutil/mem.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavutil/mem.h b/libavutil/mem.h
index 5dea492..e14e8d0 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()



More information about the ffmpeg-cvslog mailing list