summaryrefslogtreecommitdiff
path: root/libavformat/cutils.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-04-24 23:21:58 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-04-24 23:21:58 +0000
commit903a2e8628714a900383fab972630874ecdde4f1 (patch)
tree5c724405dbdbe9e1e1fb7a8773d802f3b5591ee8 /libavformat/cutils.c
parentceedda75ea8797a06111719ac8f4772a5f090781 (diff)
Avoid using reserved __names.
Originally committed as revision 12946 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/cutils.c')
-rw-r--r--libavformat/cutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/cutils.c b/libavformat/cutils.c
index 06c941112f..32887c4bc4 100644
--- a/libavformat/cutils.c
+++ b/libavformat/cutils.c
@@ -21,7 +21,7 @@
#include "avformat.h"
/* add one element to a dynamic array */
-void __dynarray_add(unsigned long **tab_ptr, int *nb_ptr, unsigned long elem)
+void ff_dynarray_add(unsigned long **tab_ptr, int *nb_ptr, unsigned long elem)
{
int nb, nb_alloc;
unsigned long *tab;