diff options
author | Jai Menon <jai@retroficial.org> | 2011-01-24 22:55:43 -0600 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-26 03:43:31 +0100 |
commit | c481ff1029ce741fb55cd9b51211b13054ce268c (patch) | |
tree | 434363842b078e556b2c9b129ae5b19b65b5c73c | |
parent | 4c56b4bc011b5fa597526cef0835bdc2f8cdcf94 (diff) | |
download | ffmpeg-c481ff1029ce741fb55cd9b51211b13054ce268c.tar.gz |
ffmetaenc: Use correct format specifiers.
Use printf format macros from inttypes.h.
Additionally, this fixes a warning when building with clang.
(cherry picked from commit c0ae5152d19790e8719c8d1d2bf9b761491dbda6)
-rw-r--r-- | libavformat/ffmetaenc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/ffmetaenc.c b/libavformat/ffmetaenc.c index 53f69982b7..785b537332 100644 --- a/libavformat/ffmetaenc.c +++ b/libavformat/ffmetaenc.c @@ -19,6 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <inttypes.h> + #include "avformat.h" #include "ffmeta.h" |