Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Beauzée-Luyssen <hugo@videolan.org>2018-09-20 14:58:42 +0300
committerHugo Beauzée-Luyssen <hugo@videolan.org>2018-09-25 12:34:42 +0300
commit8d9a85e089f7793cfab3015ba1b46c0045082a6b (patch)
treed2e54882169a651fb42eea2866ca14ba31e622db /src/ipred.h
parentac6c286860faadf501ef44bb0c0f76a27d299b53 (diff)
Remove superfluous semicolon
They are not valid out of a function in ISO C
Diffstat (limited to 'src/ipred.h')
-rw-r--r--src/ipred.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipred.h b/src/ipred.h
index 4e6c312..85ec3e4 100644
--- a/src/ipred.h
+++ b/src/ipred.h
@@ -40,7 +40,7 @@
* see ipred_prepare.h for more detailed documentation.
*/
#define decl_angular_ipred_fn(name) \
-void (name)(pixel *dst, ptrdiff_t stride, const pixel *topleft, int angle);
+void (name)(pixel *dst, ptrdiff_t stride, const pixel *topleft, int angle)
typedef decl_angular_ipred_fn(*angular_ipred_fn);
/*