diff options
author | Mans Rullgard <mans@mansr.com> | 2011-12-11 17:07:04 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-12-11 17:23:24 +0000 |
commit | 373211d828f351d86908d47828444f620bfd176d (patch) | |
tree | 57774c3dcd9d97abf4eca90b2d00615b6b92cfd6 /libswscale/x86 | |
parent | 0ebd4083e114a3c88c0e74852c10aeaea826d24d (diff) | |
download | ffmpeg-373211d828f351d86908d47828444f620bfd176d.tar.gz |
Remove extraneous semicolons
These semicolons cause invalid empty top-level declarations.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libswscale/x86')
-rw-r--r-- | libswscale/x86/swscale_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/x86/swscale_mmx.c b/libswscale/x86/swscale_mmx.c index b3f1deae60..15511c6b13 100644 --- a/libswscale/x86/swscale_mmx.c +++ b/libswscale/x86/swscale_mmx.c @@ -181,7 +181,7 @@ extern void ff_hscale ## from_bpc ## to ## to_bpc ## _ ## filter_n ## _ ## opt( SwsContext *c, int16_t *data, \ int dstW, const uint8_t *src, \ const int16_t *filter, \ - const int16_t *filterPos, int filterSize); + const int16_t *filterPos, int filterSize) #define SCALE_FUNCS(filter_n, opt) \ SCALE_FUNC(filter_n, 8, 15, opt); \ |