diff options
author | Christopher Degawa <ccom@randomderp.com> | 2021-03-12 22:20:37 -0600 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-03-13 11:47:43 -0300 |
commit | e93403b75f5f8ada918d928163fe2ea8679557d5 (patch) | |
tree | 37d447d6e933cad1e5a75bf1166eba24ad2b201c /libavutil | |
parent | b2d0826513c5e76f9bad2f1f0c809bc5c8e58b0c (diff) | |
download | ffmpeg-e93403b75f5f8ada918d928163fe2ea8679557d5.tar.gz |
libavutil/timer: Fix clang reserved-user-defined-literal
clang errors when compiling with C++11 about needing spaces between
literal and identifier
Signed-off-by: Christopher Degawa <ccom@randomderp.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/timer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/timer.h b/libavutil/timer.h index 0bb353cfce..36f920e96a 100644 --- a/libavutil/timer.h +++ b/libavutil/timer.h @@ -87,7 +87,7 @@ if (((tcount + tskip_count) & (tcount + tskip_count - 1)) == 0) { \ int i; \ av_log(NULL, AV_LOG_ERROR, \ - "%7"PRIu64" " FF_TIMER_UNITS " in %s,%8d runs,%7d skips", \ + "%7" PRIu64 " " FF_TIMER_UNITS " in %s,%8d runs,%7d skips",\ tsum * 10 / tcount, id, tcount, tskip_count); \ for (i = 0; i < 32; i++) \ av_log(NULL, AV_LOG_VERBOSE, " %2d", av_log2(2*thistogram[i]));\ |