diff options
author | Frank Barchard <fbarchard@google.com> | 2009-07-01 13:46:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-07-01 13:46:26 +0000 |
commit | 06a497afabd04cbb7f8c7e069a2ac740b3e585ff (patch) | |
tree | 0033e752bf9a5a3b46872e3fa343dd894bbf1d31 /tools/qt-faststart.c | |
parent | b4b91702348214db71c3afce4b79718714e23a34 (diff) | |
download | ffmpeg-06a497afabd04cbb7f8c7e069a2ac740b3e585ff.tar.gz |
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
Diffstat (limited to 'tools/qt-faststart.c')
-rw-r--r-- | tools/qt-faststart.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/qt-faststart.c b/tools/qt-faststart.c index b1af21c80a..a256eb1856 100644 --- a/tools/qt-faststart.c +++ b/tools/qt-faststart.c @@ -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; |