summaryrefslogtreecommitdiffstats
path: root/gst/goom/goomsl_lex.l
diff options
context:
space:
mode:
Diffstat (limited to 'gst/goom/goomsl_lex.l')
-rw-r--r--gst/goom/goomsl_lex.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/goom/goomsl_lex.l b/gst/goom/goomsl_lex.l
index 3079c022..7a7de290 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; }