summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rs.spec4
-rw-r--r--spec.l5
2 files changed, 7 insertions, 2 deletions
diff --git a/rs.spec b/rs.spec
index c2e3fd83..e9051ac0 100644
--- a/rs.spec
+++ b/rs.spec
@@ -159,7 +159,7 @@ AllocationGetPointer {
param uint32_t z
param uint32_t array
param size_t *stride
- ret void *s
+ ret void *
}
Allocation1DData {
@@ -367,7 +367,7 @@ ScriptSetTimeZone {
ScriptInvokeIDCreate {
param RsScript s
param uint32_t slot
- ret RsScriptInvokeID;
+ ret RsScriptInvokeID
}
ScriptInvoke {
diff --git a/spec.l b/spec.l
index a24bfd33..e5001591 100644
--- a/spec.l
+++ b/spec.l
@@ -187,6 +187,11 @@ ID [a-zA-Z_][a-zA-Z0-9_]*
BEGIN(INITIAL);
}
+<*>. {
+ fprintf(stderr, "error: unexpected character \'%c\' at line %d\n",
+ *yytext, num_lines + 1);
+ exit(1);
+ }
%%