]> git.sesse.net Git - ffmpeg/commitdiff
libavutil/timer: Fix clang reserved-user-defined-literal
authorChristopher Degawa <ccom@randomderp.com>
Sat, 13 Mar 2021 04:20:37 +0000 (22:20 -0600)
committerJames Almer <jamrial@gmail.com>
Sat, 13 Mar 2021 14:47:43 +0000 (11:47 -0300)
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>
libavutil/timer.h

index 0bb353cfcefd164f1431f01bca169ae9f4dbd5ea..36f920e96aeddd5709df688133021453aa51d704 100644 (file)
@@ -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]));\