Fix PRId64 issue in travis, builds locally fine, but I can see a gcc version issue here

This commit is contained in:
SteveGilvarry 2015-11-04 22:52:47 +11:00
parent dc0506c597
commit 078dc85548
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ VideoStore::~VideoStore(){
void VideoStore::dumpPacket( AVPacket *pkt ){
char b[10240];
snprintf(b, sizeof(b), " pts: %" PRId64 ", dts: %" PRId64 ", data: %p, size: %d, sindex: %d, dflags: %04x, s-pos: %" PRId64 ", c-duration: %" PRId64 "\n"
snprintf(b, sizeof(b), " pts: %"PRId64 ", dts: %"PRId64 ", data: %p, size: %d, sindex: %d, dflags: %04x, s-pos: %"PRId64 ", c-duration: %"PRId64 "\n"
, pkt->pts
, pkt->dts
, pkt->data