diff options
author | Måns Rullgård <mans@mansr.com> | 2010-09-11 09:32:14 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-09-11 09:32:14 +0000 |
commit | c058dc222c3e686abd03c1c090f511c8e6360de6 (patch) | |
tree | cd487b113dc14b44e6e879f5d7c6772f0fbb81ca | |
parent | 8d39fbd6d928753f0aeec6d78448d96b2d384400 (diff) | |
download | ffmpeg-c058dc222c3e686abd03c1c090f511c8e6360de6.tar.gz |
tta: remove stray semicolon
Originally committed as revision 25103 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/tta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tta.c b/libavcodec/tta.c index 0a4c69a472..81217f57d2 100644 --- a/libavcodec/tta.c +++ b/libavcodec/tta.c @@ -63,7 +63,7 @@ typedef struct TTAContext { int32_t *decode_buffer; - TTAChannel *ch_ctx;; + TTAChannel *ch_ctx; } TTAContext; #if 0 |