diff options
author | Bastien Nocera <hadess@hadess.net> | 2008-02-23 03:10:55 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2008-02-23 03:10:55 +0000 |
commit | 9b2e72cabdb5f7765e150ab5b3ca2d17213d773a (patch) | |
tree | 454447e3e7eb049444dee790098937cda79686e5 /gst/goom/goomsl_lex.l | |
parent | e8ef50ac94938ee230dd15642b86a332d365a1f4 (diff) |
gst/goom/Makefile.am: Don't compile lex or yacc outputs with warnings, but add other CFLAGS
Original commit message from CVS:
* gst/goom/Makefile.am: Don't compile lex or yacc outputs
with warnings, but add other CFLAGS
* gst/goom/goomsl.c (gsl_instr_set_namespace),
(gsl_instr_add_param), (iflow_execute), (gsl_enternamespace),
(calculate_labels), (gsl_read_file):
* gst/goom/goomsl_lex.l:
* gst/goom/goomsl_yacc.y:
* gst/goom/plugin_info.c: Remove a few live printf, and
fprintf, replace exit() calls with g_assert_not_reached()
if it not optimal for a library
Diffstat (limited to 'gst/goom/goomsl_lex.l')
-rw-r--r-- | gst/goom/goomsl_lex.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/goom/goomsl_lex.l b/gst/goom/goomsl_lex.l index 3079c022a..7a7de2906 100644 --- a/gst/goom/goomsl_lex.l +++ b/gst/goom/goomsl_lex.l @@ -35,7 +35,7 @@ ID [a-zA-Z_@&][a-zA-Z0-9_\.]* <C_COMMENT,LINE_COMMENT>. { /* eat up comment */ } <INITIAL>"#RST_LINE#" { currentGoomSL->num_lines = 0; } -<INITIAL>"#FILE ".*"#" { currentGoomSL->num_lines = 0; printf("%s\n", yytext); } +<INITIAL>"#FILE ".*"#" { currentGoomSL->num_lines = 0; /* printf("%s\n", yytext); */ } <INITIAL>"#"[^\n]* { /* ignore preprocessor lines */ } <INITIAL>"/*" { BEGIN C_COMMENT; } |