1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-05 09:59:52 +02:00

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
This commit is contained in:
Frank Barchard 2009-07-01 13:46:26 +00:00 committed by Diego Biurrun
parent b4b9170234
commit 06a497afab

View File

@ -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%"PRId64" byte for ftyp atom\n",
printf ("could not allocate %"PRIu64" 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%"PRId64" byte for moov atom\n",
printf ("could not allocate %"PRIu64" byte for moov atom\n",
atom_size);
fclose(infile);
return 1;