summaryrefslogtreecommitdiff
path: root/tests/audiomatch.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-12-19 21:05:40 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2017-12-19 21:32:04 +0100
commit65da5c56e661a839e017db4c51c73d6f3d8a8fcb (patch)
tree4efc2f50b66b931d11f9f2c5692b79d79288da90 /tests/audiomatch.c
parente72b8549920feae3366c4d3030afd1ccb80da48e (diff)
tests/audiomatch: Add missing return code at the end of main()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tests/audiomatch.c')
-rw-r--r--tests/audiomatch.c2
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;
}