Commit e4e86a43 authored by mstorsjo's avatar mstorsjo

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23127 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d52b9be4
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment