Commit 608572ce authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

tests/checkasm/checkasm: Do not define an unused function.

Fixes the following warning:
tests/checkasm/checkasm.c:615:12: warning: 'bench_init_ffmpeg' defined but not used
parent 497c9b0c
...@@ -612,6 +612,7 @@ static int bench_init_linux(void) ...@@ -612,6 +612,7 @@ static int bench_init_linux(void)
} }
#endif #endif
#if !CONFIG_LINUX_PERF
static int bench_init_ffmpeg(void) static int bench_init_ffmpeg(void)
{ {
#ifdef AV_READ_TIME #ifdef AV_READ_TIME
...@@ -622,6 +623,7 @@ static int bench_init_ffmpeg(void) ...@@ -622,6 +623,7 @@ static int bench_init_ffmpeg(void)
return -1; return -1;
#endif #endif
} }
#endif
static int bench_init(void) static int bench_init(void)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment