mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
parse: fix more compiler warnings
Fix 'grammar.tab.c:815:6: warning: "YYENABLE_NLS" is not defined' compiler warning and the same for YYLTYPE_IS_TRIVIAL. The two translated strings aren't particularly helpful, so just define YYENABLE_NLS to 0.
This commit is contained in:
parent
a26879b7a0
commit
189facea50
1 changed files with 6 additions and 0 deletions
|
@ -28,6 +28,12 @@
|
|||
#define YYERROR_VERBOSE 1
|
||||
#define YYLEX_PARAM scanner
|
||||
|
||||
#define YYENABLE_NLS 0
|
||||
|
||||
#ifndef YYLTYPE_IS_TRIVIAL
|
||||
#define YYLTYPE_IS_TRIVIAL 0
|
||||
#endif
|
||||
|
||||
typedef void* yyscan_t;
|
||||
|
||||
int _gst_parse_yylex (void * yylval_param , yyscan_t yyscanner);
|
||||
|
|
Loading…
Reference in a new issue