From 2ef9fd8e9ba9ec1ff75bede2a1f9f9570fc60162 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20Storsj=C3=B6?= Date: Thu, 13 May 2010 19:18:27 +0000 Subject: [PATCH] Cosmetics: Initialize pointers with NULL instead of 0, for consistency Originally committed as revision 23127 to svn://svn.ffmpeg.org/ffmpeg/trunk --- tools/qt-faststart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qt-faststart.c b/tools/qt-faststart.c index e1bcebc..dca5db1 100644 --- a/tools/qt-faststart.c +++ b/tools/qt-faststart.c @@ -83,7 +83,7 @@ int main(int argc, char *argv[]) uint64_t atom_offset = 0; uint64_t last_offset; unsigned char *moov_atom = NULL; - unsigned char *ftyp_atom = 0; + unsigned char *ftyp_atom = NULL; uint64_t moov_atom_size; uint64_t ftyp_atom_size = 0; uint64_t i, j; -- 2.7.4