diff options
author | Diego Biurrun <diego@biurrun.de> | 2015-10-30 14:04:08 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-11-05 12:41:45 +0100 |
commit | 3cba09e5228c889d63814dc43bc68f15c9dbac77 (patch) | |
tree | a997cbbf85eca54b182cf6c90e29c636ba8489c0 /libavcodec/x86/rv40dsp_init.c | |
parent | d1ef1b9eaa45043ea5df5a004fb37243e05da61d (diff) | |
download | ffmpeg-3cba09e5228c889d63814dc43bc68f15c9dbac77.tar.gz |
x86: Drop stray semicolons after function definitions
libavcodec/x86/rv40dsp_init.c:97:2: warning: ISO C does not allow extra ‘;’ outside of a function [-Wpedantic]
libavcodec/x86/vp9dsp_init.c:94:40: warning: ISO C does not allow extra ‘;’ outside of a function [-Wpedantic]
Diffstat (limited to 'libavcodec/x86/rv40dsp_init.c')
-rw-r--r-- | libavcodec/x86/rv40dsp_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/rv40dsp_init.c b/libavcodec/x86/rv40dsp_init.c index 7bf3ecd1f3..f6d4165452 100644 --- a/libavcodec/x86/rv40dsp_init.c +++ b/libavcodec/x86/rv40dsp_init.c @@ -94,7 +94,7 @@ static void OP ## rv40_qpel ##SIZE ##_mc ##PH ##PV ##OPT(uint8_t *dst, \ ff_ ##OP ##rv40_qpel_h ## OPT(dst + i, stride, src + i, \ stride, SIZE, HCOFF(PH)); \ } \ -}; +} /** Declare functions for sizes 8 and 16 and given operations * and qpel position. */ |