diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-10-04 01:11:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-10-04 01:11:04 +0000 |
commit | dd990075d62a981283de008b43cea0556fa81959 (patch) | |
tree | 6d9ad77b77a7cd9b4f0103c1b65934eba3d45424 /libavcodec/h264_parser.c | |
parent | 2791c608835fa869ede8582a60df35076b4b297b (diff) | |
download | ffmpeg-dd990075d62a981283de008b43cea0556fa81959.tar.gz |
100l forgot return type.
Originally committed as revision 15539 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264_parser.c')
-rw-r--r-- | libavcodec/h264_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c index bc3a2c021d..e0973bf6e0 100644 --- a/libavcodec/h264_parser.c +++ b/libavcodec/h264_parser.c @@ -139,7 +139,7 @@ static int h264_split(AVCodecContext *avctx, return 0; } -static close(AVCodecParserContext *s) +static void close(AVCodecParserContext *s) { H264Context *h = s->priv_data; ParseContext *pc = &h->s.parse_context; |