diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-04-10 11:31:55 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-04-10 11:31:55 +0000 |
commit | cbf1eae9a53ecf2c5052a4b6563aab3913ad31fc (patch) | |
tree | 05709727e334248c86076527b5e8f2c145d2e7b4 /libavcodec/h264.c | |
parent | e4732ba98b2a20251c60cbc9d314f585866aca1b (diff) | |
download | ffmpeg-cbf1eae9a53ecf2c5052a4b6563aab3913ad31fc.tar.gz |
Add forgotten void return type to ff_h264_free_context
Originally committed as revision 18411 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 3eb1386a24..99dd52b0c9 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -8083,7 +8083,7 @@ int main(void){ #endif /* TEST */ -av_cold ff_h264_free_context(H264Context *h) +av_cold void ff_h264_free_context(H264Context *h) { int i; |