Commit 68142fe7 authored by diego's avatar diego

Use more portable 'PRId64' instead of 'llx' as conversion/length specifier.

patch by Frank Barchard, fbarchard google com


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19309 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 14cbfa75
......@@ -129,7 +129,7 @@ int main(int argc, char *argv[])
ftyp_atom_size = atom_size;
ftyp_atom = malloc(ftyp_atom_size);
if (!ftyp_atom) {
printf ("could not allocate 0x%llX byte for ftyp atom\n",
printf ("could not allocate 0x%"PRId64" byte for ftyp atom\n",
atom_size);
fclose(infile);
return 1;
......@@ -170,7 +170,7 @@ int main(int argc, char *argv[])
moov_atom_size = atom_size;
moov_atom = malloc(moov_atom_size);
if (!moov_atom) {
printf ("could not allocate 0x%llX byte for moov atom\n",
printf ("could not allocate 0x%"PRId64" byte for moov atom\n",
atom_size);
fclose(infile);
return 1;
......
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