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:
Tim-Philipp Müller 2010-04-07 12:29:52 +01:00
parent a26879b7a0
commit 189facea50

View file

@ -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);