[vlc-commits] codec: webvtt: use alternative params syntax
Francois Cartegnie
git at videolan.org
Tue Nov 7 15:08:41 CET 2017
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Tue Nov 7 13:08:50 2017 +0100| [88130eafe0b43efd458bbe3bcc0615dd76994fdd] | committer: Francois Cartegnie
codec: webvtt: use alternative params syntax
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=88130eafe0b43efd458bbe3bcc0615dd76994fdd
---
modules/codec/webvtt/CSSGrammar.y | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/modules/codec/webvtt/CSSGrammar.y b/modules/codec/webvtt/CSSGrammar.y
index 00e0babc3f..71b5939ebd 100644
--- a/modules/codec/webvtt/CSSGrammar.y
+++ b/modules/codec/webvtt/CSSGrammar.y
@@ -28,8 +28,10 @@
*/
%pure-parser
-%parse-param { yyscan_t scanner } { vlc_css_parser_t *css_parser }
-%lex-param { yyscan_t scanner } { vlc_css_parser_t *css_parser }
+%parse-param { yyscan_t scanner }
+%parse-param { vlc_css_parser_t *css_parser }
+%lex-param { yyscan_t scanner }
+%lex-param { vlc_css_parser_t *css_parser }
%{
#ifdef HAVE_CONFIG_H
More information about the vlc-commits
mailing list