aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-12-19 21:05:40 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2018-01-28 15:31:13 +0100
commit43c03866b23ab49ccdce014a55b601a25e5094cf (patch)
tree9a645b511cdcd5f03bc18ca366c00b4787f3d618
parent2e426fae43f3a543649a6b9bf3ed6c0ae6892ce5 (diff)
downloadffmpeg-43c03866b23ab49ccdce014a55b601a25e5094cf.tar.gz
tests/audiomatch: Add missing return code at the end of main()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 65da5c56e661a839e017db4c51c73d6f3d8a8fcb) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--tests/audiomatch.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/audiomatch.c b/tests/audiomatch.c
index ca56df09b3..9671789a37 100644
--- a/tests/audiomatch.c
+++ b/tests/audiomatch.c
@@ -107,4 +107,6 @@ int main(int argc, char **argv){
}
}
printf("presig: %d postsig:%d c:%7.4f lenerr:%d\n", bestpos, datlen - siglen - bestpos, bestc / sigamp, datlen - siglen);
+
+ return 0;
}