diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-16 07:48:23 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-16 07:48:23 +0100 |
commit | 4da45aff28de618c3be566094952bc19da9c9118 (patch) | |
tree | 98465d8073ceaccd420d3c393ed2e118a89dea73 /libavformat/wtvenc.c | |
parent | df72ae673f3743a57726c86f07677fbc14a0117c (diff) | |
download | ffmpeg-4da45aff28de618c3be566094952bc19da9c9118.tar.gz |
cleanup: remove various double end ';' all over the code.
Diffstat (limited to 'libavformat/wtvenc.c')
-rw-r--r-- | libavformat/wtvenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/wtvenc.c b/libavformat/wtvenc.c index 71ff2081bc..3fdda94ffb 100644 --- a/libavformat/wtvenc.c +++ b/libavformat/wtvenc.c @@ -284,7 +284,7 @@ static void write_sync(AVFormatContext *s) AVIOContext *pb = s->pb; WtvContext *wctx = s->priv_data; int64_t last_chunk_pos = wctx->last_chunk_pos; - wctx->sync_pos = avio_tell(pb) - wctx->timeline_start_pos;; + wctx->sync_pos = avio_tell(pb) - wctx->timeline_start_pos; write_chunk_header(s, &sync_guid, 0x18, 0); write_pad(pb, 24); |