diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-04-24 23:21:58 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-04-24 23:21:58 +0000 |
commit | 903a2e8628714a900383fab972630874ecdde4f1 (patch) | |
tree | 5c724405dbdbe9e1e1fb7a8773d802f3b5591ee8 /libavformat/cutils.c | |
parent | ceedda75ea8797a06111719ac8f4772a5f090781 (diff) | |
download | ffmpeg-903a2e8628714a900383fab972630874ecdde4f1.tar.gz |
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.c | 2 |
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; |