summaryrefslogtreecommitdiff
path: root/tools/d2c/conv/tokens.l
diff options
context:
space:
mode:
Diffstat (limited to 'tools/d2c/conv/tokens.l')
-rw-r--r--tools/d2c/conv/tokens.l7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/d2c/conv/tokens.l b/tools/d2c/conv/tokens.l
index ef6b958..f1d196d 100644
--- a/tools/d2c/conv/tokens.l
+++ b/tools/d2c/conv/tokens.l
@@ -28,5 +28,12 @@
<raw_line>[^\n]+ { yylvalp->cstring = yytext; return RAW_LINE; }
<raw_line>"\n" { yy_pop_state(); }
+. {
+ char *msg;
+ asprintf(&msg, "Unhandled token in d2c conv block: '%s'", yytext);
+ YY_FATAL_ERROR(msg);
+ free(msg);
+ }
+
%%