[MPlayer-cvslog] r19380 - trunk/libass/ass.c
eugeni
subversion at mplayerhq.hu
Sun Aug 13 02:47:33 CEST 2006
Author: eugeni
Date: Sun Aug 13 02:47:33 2006
New Revision: 19380
Modified:
trunk/libass/ass.c
Log:
MinGW treats %lld as %d. Replace it with PRId64.
Modified: trunk/libass/ass.c
==============================================================================
--- trunk/libass/ass.c (original)
+++ trunk/libass/ass.c Sun Aug 13 02:47:33 2006
@@ -9,6 +9,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
+#include <inttypes.h>
#ifdef HAVE_ENCA
#include "subreader.h" // for guess_buffer_cp
@@ -504,7 +505,7 @@
str = malloc(size + 1);
memcpy(str, data, size);
str[size] = '\0';
- mp_msg(MSGT_GLOBAL, MSGL_V, "\nline at timecode %lld, duration %lld: \n%s\n", timecode, duration, str);
+ mp_msg(MSGT_GLOBAL, MSGL_V, "event at %" PRId64 ", +%" PRId64 ": %s \n", (uint64_t)timecode, (uint64_t)duration, str);
eid = ass_alloc_event(track);
event = track->events + eid;
More information about the MPlayer-cvslog
mailing list