Skip to content
Snippets Groups Projects
Commit 06a497af authored by Frank Barchard's avatar Frank Barchard Committed by Diego Biurrun
Browse files

Use slightly more appropriate format strings for printing decimal values.

patch by Frank Barchard, fbarchard google com

Originally committed as revision 19315 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b4b91702
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,7 @@ int main(int argc, char *argv[]) ...@@ -129,7 +129,7 @@ int main(int argc, char *argv[])
ftyp_atom_size = atom_size; ftyp_atom_size = atom_size;
ftyp_atom = malloc(ftyp_atom_size); ftyp_atom = malloc(ftyp_atom_size);
if (!ftyp_atom) { if (!ftyp_atom) {
printf ("could not allocate 0x%"PRId64" byte for ftyp atom\n", printf ("could not allocate %"PRIu64" byte for ftyp atom\n",
atom_size); atom_size);
fclose(infile); fclose(infile);
return 1; return 1;
...@@ -170,7 +170,7 @@ int main(int argc, char *argv[]) ...@@ -170,7 +170,7 @@ int main(int argc, char *argv[])
moov_atom_size = atom_size; moov_atom_size = atom_size;
moov_atom = malloc(moov_atom_size); moov_atom = malloc(moov_atom_size);
if (!moov_atom) { if (!moov_atom) {
printf ("could not allocate 0x%"PRId64" byte for moov atom\n", printf ("could not allocate %"PRIu64" byte for moov atom\n",
atom_size); atom_size);
fclose(infile); fclose(infile);
return 1; return 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment