diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-12-19 21:05:40 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-12-19 21:32:04 +0100 |
commit | 65da5c56e661a839e017db4c51c73d6f3d8a8fcb (patch) | |
tree | 4efc2f50b66b931d11f9f2c5692b79d79288da90 | |
parent | e72b8549920feae3366c4d3030afd1ccb80da48e (diff) | |
download | ffmpeg-65da5c56e661a839e017db4c51c73d6f3d8a8fcb.tar.gz |
tests/audiomatch: Add missing return code at the end of main()
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 c17227859a..d44c4070e0 100644 --- a/tests/audiomatch.c +++ b/tests/audiomatch.c @@ -109,4 +109,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; } |