diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-12-19 21:05:40 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-12-30 21:11:32 +0100 |
commit | 7a5c73896394c3f53371b7c91f0da99dbf0c2ae2 (patch) | |
tree | 2e4e155a1a5ba2b2c3b873164abbe652bdfa69e0 | |
parent | bdba0f6786d57356c2ead515338fb44754aa91c4 (diff) | |
download | ffmpeg-7a5c73896394c3f53371b7c91f0da99dbf0c2ae2.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.c | 2 |
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; } |