# HG changeset patch # User al # Date 1133461215 0 # Node ID 5ac9c20533c36dc340cffd0ac16784abc133d039 # Parent 0419cc6816109dc4919e7342335f566c856021df Fixed format specifier in STOP_TIMER macro. diff -r 0419cc681610 -r 5ac9c20533c3 common.h --- a/common.h Mon Nov 07 01:32:29 2005 +0000 +++ b/common.h Thu Dec 01 18:20:15 2005 +0000 @@ -512,7 +512,7 @@ }else\ tskip_count++;\ if(256*256*256*64%(tcount+tskip_count)==0){\ - av_log(NULL, AV_LOG_DEBUG, "%Ld dezicycles in %s, %d runs, %d skips\n", tsum*10/tcount, id, tcount, tskip_count);\ + av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" dezicycles in %s, %d runs, %d skips\n", tsum*10/tcount, id, tcount, tskip_count);\ }\ } #else