]> git.sesse.net Git - ffmpeg/commit
avfilter/vf_unsharp: Remove unnecessary ;
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Sun, 24 Jan 2021 21:26:06 +0000 (22:26 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Tue, 26 Jan 2021 16:44:41 +0000 (17:44 +0100)
commit3c700c82cbee49d1f40b6a7063f4b084ae3ee747
treee4a0d895f54dba3c96a3696a07f6651a55ee9cbb
parent9e30859cb60b915f237581e3ce91b0d31592edc0
avfilter/vf_unsharp: Remove unnecessary ;

A macro that expands to a function definition might look like a
declaration, but it isn't and therefore an extra ';' at the end is
unnecessary and actually invalid (both GCC and Clang warn about this
when using -pedantic).

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavfilter/vf_unsharp.c