summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-10-07 08:11:35 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-10-10 14:27:36 +0200
commit0c0d5faf94d3bc4648ac8b07d78143976e480d45 (patch)
tree8ae40d54d687fc90cc2c69af8435613b22b99575 /libavfilter
parentaac8fa2fbfe235f4a6c3ea733295dd59a7bae8f7 (diff)
avfilter/asrc_flite: Remove double ';'
(Inside a function a stray ';' is an empty statement; outside of a function it is actually invalid, but compilers happen to accept it without complaint (unless e.g. using -pedantic).) Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/asrc_flite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/asrc_flite.c b/libavfilter/asrc_flite.c
index 6335a81f0e..17e7a5b9bc 100644
--- a/libavfilter/asrc_flite.c
+++ b/libavfilter/asrc_flite.c
@@ -71,7 +71,7 @@ static int flite_inited = 0;
/* declare functions for all the supported voices */
#define DECLARE_REGISTER_VOICE_FN(name) \
cst_voice *register_cmu_us_## name(const char *); \
- void unregister_cmu_us_## name(cst_voice *);
+ void unregister_cmu_us_## name(cst_voice *)
DECLARE_REGISTER_VOICE_FN(awb);
DECLARE_REGISTER_VOICE_FN(kal);
DECLARE_REGISTER_VOICE_FN(kal16);