diff options
author | Alexander Strasser <eclipse7@gmx.net> | 2005-12-01 18:20:15 +0000 |
---|---|---|
committer | Alexander Strasser <eclipse7@gmx.net> | 2005-12-01 18:20:15 +0000 |
commit | e852beeee3ed4bc77fa3cb126ccb13c5b8903a5e (patch) | |
tree | e730dc0f08c43ebe0d3b45e119969506a8098f36 | |
parent | 0bb0289c3ab89b488c622bab606f861a517c3b88 (diff) | |
download | ffmpeg-e852beeee3ed4bc77fa3cb126ccb13c5b8903a5e.tar.gz |
Fixed format specifier in STOP_TIMER macro.
Originally committed as revision 4713 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/common.h b/libavutil/common.h index bbbd4c91c9..e4e6dfa7d7 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -512,7 +512,7 @@ tend= read_time();\ }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 |