[FFmpeg-devel] [PATCH] checkasm: Silence warnings about unused return value from read()

Martin Storsjö martin at martin.st
Wed May 25 10:43:38 EEST 2022


This codepath is enabled by default on arm, if the linux perf API
is available, unless disabled with --disable-linux-perf.
---
 tests/checkasm/checkasm.h | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/checkasm/checkasm.h b/tests/checkasm/checkasm.h
index a86db140e3..7fd1e1606d 100644
--- a/tests/checkasm/checkasm.h
+++ b/tests/checkasm/checkasm.h
@@ -229,8 +229,10 @@ typedef struct CheckasmPerf {
     ioctl(sysfd, PERF_EVENT_IOC_ENABLE, 0);             \
 } while (0)
 #define PERF_STOP(t) do {                               \
+    int ret;                                            \
     ioctl(sysfd, PERF_EVENT_IOC_DISABLE, 0);            \
-    read(sysfd, &t, sizeof(t));                         \
+    ret = read(sysfd, &t, sizeof(t));                   \
+    (void)ret;                                          \
 } while (0)
 #elif CONFIG_MACOS_KPERF
 #define PERF_START(t) t = ff_kperf_cycles()
-- 
2.32.0 (Apple Git-132)



More information about the ffmpeg-devel mailing list