diff options
author | Frank Barchard <fbarchard@google.com> | 2009-06-30 15:11:51 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-06-30 15:11:51 +0000 |
commit | cb28f954544f50d0670bddfb2c7b7a282ded3a64 (patch) | |
tree | 123ae3c04e22a95fef9ec26d74c2c45014eeff77 /tools | |
parent | d6ced963176f00569e4ca1fcd196afa1742a7b2c (diff) | |
download | ffmpeg-streaming-cb28f954544f50d0670bddfb2c7b7a282ded3a64.zip ffmpeg-streaming-cb28f954544f50d0670bddfb2c7b7a282ded3a64.tar.gz |
Use more portable 'PRId64' instead of 'llx' as conversion/length specifier.
patch by Frank Barchard, fbarchard google com
Originally committed as revision 19309 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tools')
-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 0ea9660..b1af21c 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%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; |