diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-05-23 13:04:12 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-05-23 13:04:12 +0000 |
commit | 747fb6c60c2d89f86ba4c1ff5985633ed1b77fec (patch) | |
tree | 72580c900993d7794d570743bf0ac7a27171f379 | |
parent | 42720ee4d04ee934f4b0780e296141245cf7a3ad (diff) | |
download | ffmpeg-747fb6c60c2d89f86ba4c1ff5985633ed1b77fec.tar.gz |
vertical align
Originally committed as revision 13259 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 40976547c0..7986d49d32 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2254,7 +2254,7 @@ int ff_new_chapter(AVFormatContext *s, int id, int64_t start, int64_t end, const chapter->title = av_strdup(title); chapter->id = id; chapter->start = start; - chapter->end = end; + chapter->end = end; return 0; } |