summary refs log tree commit diff
path: root/bin/c11.l
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bin/c11.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/c11.l b/bin/c11.l
index b9490f2e..06006e3f 100644
--- a/bin/c11.l
+++ b/bin/c11.l
@@ -79,7 +79,7 @@ register|restrict|return|static|struct|switch|typedef|union|volatile|while |
 {ident} { return Ident; }
 
 "//"([^\n]|"\\\n")* |
-"/*"([^*]|"*"[^/])*"*"+"/" {
+"/*"([^*]|"*"+[^*/])*"*"+"/" {
 	return Comment;
 }