diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-29 20:41:58 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-29 20:41:58 +0200 |
commit | c31ad87bc6641d5dc3958237f4f23e5be4421982 (patch) | |
tree | 30168991001133a3d2705cb9e0aeadbc0e4de0d3 | |
parent | 03b88f6b393359957ac9f7f0fb9b148ab51b3da5 (diff) | |
download | ffmpeg-c31ad87bc6641d5dc3958237f4f23e5be4421982.tar.gz |
avformat/xwma: use NULL instead of 0 for pointers
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 e629b3f384..057e86c56f 100644 --- a/libavformat/xwma.c +++ b/libavformat/xwma.c @@ -46,7 +46,7 @@ static int xwma_read_header(AVFormatContext *s) int64_t size; int ret; uint32_t dpds_table_size = 0; - uint32_t *dpds_table = 0; + uint32_t *dpds_table = NULL; unsigned int tag; AVIOContext *pb = s->pb; AVStream *st; |