diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-07-31 23:29:37 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-08-01 03:15:32 +0000 |
commit | c36bad3b895c908c270af8b526687307a15855d9 (patch) | |
tree | a959f9e04a29703c341a53e88fe6086e4bec06a5 /libavformat/xwma.c | |
parent | b0c51bbcd18b4438128dbaabfe1c864bef252b4c (diff) | |
download | ffmpeg-c36bad3b895c908c270af8b526687307a15855d9.tar.gz |
xvma: remove unused variable
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/xwma.c')
-rw-r--r-- | libavformat/xwma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/xwma.c b/libavformat/xwma.c index bd3af35b72..f8561d1522 100644 --- a/libavformat/xwma.c +++ b/libavformat/xwma.c @@ -42,7 +42,7 @@ static int xwma_probe(AVProbeData *p) static int xwma_read_header(AVFormatContext *s) { - int64_t size, av_uninit(data_size); + int64_t size; int ret; uint32_t dpds_table_size = 0; uint32_t *dpds_table = 0; |