diff options
author | eugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-08-13 10:54:29 +0000 |
---|---|---|
committer | eugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-08-13 10:54:29 +0000 |
commit | 070c050f0a82887d6eafa33e81361929d6b9761a (patch) | |
tree | 8606ebe4cd49bde8eab85efd57bcc66d457c9301 /libass/ass_render.c | |
parent | 51367ea3449d68aa246cb0e8000087f792c687b1 (diff) |
Replace %lld with PRId64, part 2.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19384 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libass/ass_render.c')
-rw-r--r-- | libass/ass_render.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libass/ass_render.c b/libass/ass_render.c index f567520c06..e5f88f4c4e 100644 --- a/libass/ass_render.c +++ b/libass/ass_render.c @@ -3,6 +3,7 @@ #include <assert.h> #include <math.h> #include <stdint.h> +#include <inttypes.h> #include <ft2build.h> #include FT_FREETYPE_H #include FT_STROKER_H @@ -669,7 +670,8 @@ static char* parse_tag(char* p, double pwr) { t1 = strtoll(p, &p, 10); skip(','); t2 = strtoll(p, &p, 10); - mp_msg(MSGT_GLOBAL, MSGL_DBG2, "movement6: (%d, %d) -> (%d, %d), (%lld .. %lld)\n", x1, y1, x2, y2, t1, t2); + mp_msg(MSGT_GLOBAL, MSGL_DBG2, "movement6: (%d, %d) -> (%d, %d), (%" PRId64 " .. %" PRId64 ")\n", + x1, y1, x2, y2, (int64_t)t1, (int64_t)t2); } else { t1 = 0; t2 = render_context.event->Duration; |