Browse code

Cosmetics: Initialize pointers with NULL instead of 0, for consistency

Originally committed as revision 23127 to svn://svn.ffmpeg.org/ffmpeg/trunk

Martin Storsjö authored on 2010/05/14 04:18:27
Showing 1 changed files
... ...
@@ -83,7 +83,7 @@ int main(int argc, char *argv[])
83 83
     uint64_t atom_offset = 0;
84 84
     uint64_t last_offset;
85 85
     unsigned char *moov_atom = NULL;
86
-    unsigned char *ftyp_atom = 0;
86
+    unsigned char *ftyp_atom = NULL;
87 87
     uint64_t moov_atom_size;
88 88
     uint64_t ftyp_atom_size = 0;
89 89
     uint64_t i, j;