diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-03-09 03:39:58 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-03-09 03:39:58 +0000 |
commit | c900635fd98c4db74acdb48aa34e8db952a28327 (patch) | |
tree | 2b75c575a33cb910c62e30ac1bcf59b290c6df99 /libavutil | |
parent | 6b4fab72dfffebe7fe36c2078d0c874f39792abe (diff) | |
download | ffmpeg-c900635fd98c4db74acdb48aa34e8db952a28327.tar.gz |
indent
Originally committed as revision 17897 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/fifo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/fifo.c b/libavutil/fifo.c index 57b229a4c4..f36dfeea6e 100644 --- a/libavutil/fifo.c +++ b/libavutil/fifo.c @@ -38,8 +38,8 @@ AVFifoBuffer *av_fifo_alloc(unsigned int size) void av_fifo_free(AVFifoBuffer *f) { if(f){ - av_free(f->buffer); - av_free(f); + av_free(f->buffer); + av_free(f); } } |